Endpoint - PrintManifest
If your carrier integration requires printed version of endofday manifest, you can generate PDF and the user will be able to print it from linnworks.net.
Request
Post
PrintManifestRequest
PrintManifestRequest
Field Name | Type | Description |
---|---|---|
AuthorizationToken | Guid | Authorization token uniquely identifying each integration profile |
ManifestReference | String | Manifest reference |
Sample
{
"AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb",
"ManifestReference": "RF24789373331"
}
Response
PrintManifestResponse
PrintManifestResponse
Field Name | Type | Description |
---|---|---|
IsError | Boolean | Indicates if there is an error |
ErrorMessage | String / null | Error message |
PDFbase64 | String | Base64 PDF file |
{
"IsError": false,
"ErrorMessage": null,
"PDFbase64": "DJHDD234872376478DDD…."
}
Updated over 1 year ago