Updates purchase order extended property by id. If supplied id doesn't exists, the routine will throw an error
The routine checks for duplicated propery names and throws an error if duplicated property name.
Name | Type | Description |
---|---|---|
request | Update_PurchaseOrderExtendedPropertyRequest |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/PurchaseOrder/Update_PurchaseOrderExtendedProperty
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
request={
"PurchaseId": "6ff44c00-2fba-4c7a-8b05-760caf474217",
"ExtendedPropertyItems": [
{
"RowId": 1,
"PropertyName": "sample string 2",
"PropertyValue": "sample string 3"
}
]
}
This is an example of the response JSON. Results will vary depending on your data.