Endpoint - CancelLabelEndpoint
Cancels all labels for the consignment by OrderId. If your integration does not support label cancellation implement an error message from this method.
Request
Post
CancelLabelRequest
CancelLabelRequest
Field Name | Type | Description |
---|---|---|
AuthorizationToken | Guid | Authorization token uniquely identifying each integration profile |
OrderReference | String | The Linnworks unique order ID |
Sample
{
"AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb",
"OrderReference": "ORDERREFERENCE"
}
Response
CancelLabelResponse
CancelLabelResponse
Field Name | Type | Description |
---|---|---|
IsError | Boolean | Indicates if there is an error |
ErrorMessage | String / null | Error message |
{
"IsError": false,
"ErrorMessage": null
}
Updated over 1 year ago