Unlink Multiple Child Parcels
If you need to unlink multiple child parcels from your parcel, you can use this API.
| URL | /parcel/v2/unlink_parcel |
| Method | POST |
| Parameters | sparcelid, array |
| Sample Request JSON |
{ "sparcelid":[ 'c7743507-bdce-4788-b65a-4769f8a7b44c', 'd7743507-bdce-4788-b65a-4769f8a7poip' ] } |
| Sample Response JSON |
{ "status": "ok", "isvalid": true, "qty_to_unlink": 2, "parcel": [ { "parcelid": "c7743507-bdce-4788-b65a-4769f8a7b44c", "info": "unlink done", "status": "ok" }, { "parcelid": "d7743507-bdce-4788-b65a-4769f8a7poip", "info": "unlink done", "status": "ok" } ] } |
| Response Codes |
200: ok E128: was not linked to any parent |