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

Field NameTypeDescription
AuthorizationTokenGuidAuthorization token uniquely identifying each integration profile
OrderIdString[]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

Field NameTypeDescription
IsErrorBooleanIndicates if there is an error
ErrorMessageString / nullError message
ManifestReferenceStringManifest reference
{
  "IsError": false,
  "ErrorMessage": null,
  "ManifestReference" : "RF24789373331"
}