v1

latestOpenAPI 3.1.02026-07-14460151.1 KB

Get shipment by id

get/v2/orders/{order_id}/shipments/{shipment_id}

Path parameters

order_idstring required

Order ID

shipment_idstring required

Shipment ID

Response

200

Example response

{
  "data": {
    "id": 1001,
    "order_id": 50001,
    "status": "Shipped",
    "carrier_code": "code",
    "created_at": "2024-01-15T10:30:00.000000Z",
    "products": [
      {
        "id": 2001,
        "variant_id": 3001,
        "quantity": 2,
        "unit_price": "25.99"
      }
    ]
  }
}