Skip to content
English
  • There are no suggestions because the search field is empty.

Insert Extra Field

With the help of this API, you have the option to add an extra field to your parcel.

URL /metadata/v1/insert_metadata
Method POST 
Parameters

FieldType, integer

FieldValue, string

tokenid, string (parcel_id)

idmetadatadefinition, integer (To obtain the idmetadatadefinition, please refer to Step 1: mentioned in the description above.)

Sample Request JSON

 {

   "FieldType":3,

   "FieldValue":"Extra Field Value",

   "tokenid":"a5919be0-e066-4013-8575-ec58155b8066"  //parcel_id,

   "idmetadatadefinition":103,

}

Sample Response JSON

{

   "status": "ok",

   "isvalid": true,

   "idmetadata": 423

}

Response Codes 200: ok
Note

Please select a suitable FieldType from the list below and use the FieldType to be passed in the request JSON

  • FieldValueInt, integer => FieldType = 1
  • FieldValueReal, real => FieldType = 2
  • FieldValue, string => FieldType = 3
  • FieldValueMemo, string => FieldType = 4
  • FieldValueDate, DateTime => FieldType = 5
  • FieldValueMemo, string => FieldType = 6 (for file)