For the complete documentation index, see llms.txt. This page is also available as Markdown.

Print Manifest

POST /v4/orders/manifesto

This endpoint generates a manifest document for one or more pending orders, identified by their unique order IDs. The manifest summarizes shipment details and is typically used by couriers for pickup and handover.

Base URL

Headers

Name
Value

Content-Type

application/json

Authorization

Body

{
  "filters": {
    "ids": ["<order_id_1>", "<order_id_2>", "..."]
  }
}

Response

// Label PDF File
{
    "statusCode": 400,
    "timestamp": "2025-07-16T14:56:37.039Z",
    "path": "/v4/orders/manifesto",
    "message": "Invalid ObjectId format for parameter orderId",
    "errors": [
        "Invalid ObjectId format for parameter orderId"
    ]
}
{
    "statusCode": 403,
    "timestamp": "2025-07-16T14:55:48.930Z",
    "path": "/v4/orders/manifesto",
    "message": "User is not authorized",
    "errors": [
        "User is not authorized"
    ]
}

Last updated