GET
/
shipping
/
shipments
curl --request GET \
  --url https://services.commercengine.dev/api/v1/x2yh61zw4k/admin/shipping/shipments \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "shipments": [
      {
        "order_number": "<string>",
        "shipment_number": "<string>",
        "warehouse_id": "<string>",
        "warehouse_name": "<string>",
        "status": "<string>",
        "total_weight": 123,
        "total_boxes": 123,
        "shipment_items_count": 123,
        "shipping_amount": 123,
        "shipping_tax_amount": 123,
        "shipping_amount_including_tax": 123,
        "courier_company_name": "<string>",
        "awb_no": "<string>",
        "shipping_label_url": "<string>",
        "eta_delivery": "<string>",
        "shipped_date": "<string>",
        "delivered_date": "<string>",
        "slo": {
          "expected_date": "2023-12-25",
          "actual_date": "2023-12-25",
          "difference": "<string>"
        },
        "cancellation_reason": "<string>",
        "created_at": "<string>",
        "modified_at": "<string>"
      }
    ],
    "pagination": {
      "total_records": 123,
      "total_pages": 123,
      "previous_page": "<any>",
      "limit": 123,
      "next_page": "<any>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
OK
message
string
success
boolean
content
object