GET
/
shipments
/
{id}
Get Shipment
curl --request GET \
  --url https://api.wizcommerce.com/v1/shipments/{id} \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "id": "01f5d171-d3e3-4b2b-bd57-0727194b5bed",
    "reference_id": "123",
    "order_id": "123",
    "created_at": "2021-01-01T00:00:00Z",
    "status": "shipped",
    "tracking_info": {
      "tracking_number": "123",
      "tracking_url": "https://www.google.com",
      "delivery_partner": "Fedex"
    },
    "shipment_items": [
      {
        "id": "123",
        "sku_id": "123",
        "quantity": 10
      }
    ],
    "updated_at": "2021-01-01T00:00:00Z",
    "note": "Handle with care"
  }
}

Authorizations

X-API-Key
string
header
required

API Key for authentication

Path Parameters

id
string
required

Shipment ID

Response

200
application/json

OK

The response is of type object.