Update a Parcel Extra Field
Using this API, you can update an extra field that is linked to a specific parcel.
| URL | /metadata/v1/update_metadata |
| Method | POST |
| Parameters |
FieldType, integer FieldValue, string tokenid, string (parcel_id) ndata, integer (You can use the "idmetadata" that you received from the "Get Parcel Extra Fields" API at this point.) |
| Sample Request JSON |
{ "FieldType" : 3, "FieldValue" : "123456", "tokenid" : "fe613050-0071-4e53-a365-6c000fe42ce7", //parcel_id "ndata" : 12057 } |
| Sample Response JSON |
{ "status": "ok", "isvalid": true, "idmetadata": 12057 } |
| Response Codes | 200: ok |
| Note |
Make sure to send only the related field value from the below field types FieldValue, string FieldValueInt, integer FieldValueReal, real FieldValueMemo, text FieldValueDate, date |