Get all identifiers for a list of orderIds
Name | Type | Description |
---|---|---|
request | GetOrderIdentifierRequest |
The following request format is required for this method.
POST https://eu-ext.linnworks.net/api/OpenOrders/GetIdentifiersByOrderIds
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={
"OrderIds": [
"5f13757d-86c7-4396-aa51-7ba39578a06c"
]
}
This is an example of the response JSON. Results will vary depending on your data.
[
{
"fkOrderId": "0d82504f-0649-4f4a-93ff-bb9490b7af46",
"IdentifierId": 2,
"IsCustom": true,
"ImageId": "4b57a646-71fe-4496-99b5-9516f39b9227",
"ImageUrl": "sample string 5",
"Tag": "sample string 6",
"Name": "sample string 7"
}
]