cURL
curl --request POST \ --url https://api.example.com/api/v1/Orders/PackingSlips/Bulk \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "packingSlipIDs": [ 123 ] } '
{ "isSuccess": true, "message": "<string>", "payload": [ { "packingSlipId": 123, "packingSlipName": "<string>", "orderingCode": "<string>", "orderingName": "<string>", "layoutCode": "<string>", "layoutName": "<string>", "useBrandLogo": true, "imageData": "aSDinaTvuI8gbWludGxpZnk=", "marketingMessage": "<string>", "creationDate": "2023-11-07T05:31:56Z", "createdBy": "<string>", "lastUpdateDate": "2023-11-07T05:31:56Z", "lastUpdatedBy": "<string>" } ] }
Enter the Bearer AccessToken; Example: 'Bearer 12345abcdef'
A request to get a list of packing slips
The list of IDs, numbers, of the packing slips
Returns the list of packing Slips
Generic container for all service responses
Was the request successful. If not, the message will have more information.
Any error message
The payload object of the response
Show child attributes
Was this page helpful?