Endpoint - CreateManifest
The method is called by Linnworks.net when a user files a manifest. The request will contain all order Id to be manifested (filed as the end of day).
Request
Post
CreateManifestRequest
CreateManifestRequest
Field Name | Type | Description |
---|---|---|
AuthorizationToken | Guid | Authorization token uniquely identifying each integration profile |
OrderId | String[] | List of OrderIds. Although OrderId is int, note that this is an array of strings to avoid casting issues |
Sample
{
"AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb",
"OrderId": [
"100001",
"100002"
]
}
Response
CreateManifestResponse
CreateManifestResponse
Field Name | Type | Description |
---|---|---|
IsError | Boolean | Indicates if there is an error |
ErrorMessage | String / null | Error message |
ManifestReference | String | Manifest reference |
{
"IsError": false,
"ErrorMessage": null,
"ManifestReference" : "RF24789373331"
}
Updated over 1 year ago