GET
/
v1
/
orders
/
{request_id}
Retrieve Order
curl --request GET \
  --url https://api.zinc.io/v1/orders/{request_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "_type": "order_response",
  "price_components": {
    "converted_payment_total": 123,
    "currency": "<string>",
    "payment_currency": "<string>",
    "shipping": 123,
    "subtotal": 123,
    "tax": 123,
    "total": 123
  },
  "merchant_order_ids": [
    {
      "merchant_order_id": "<string>",
      "merchant": "<string>",
      "account": "<string>",
      "placed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "tracking": [
    {
      "product_id": "<string>",
      "merchant_order_id": "<string>",
      "carrier": "<string>",
      "tracking_number": "<string>",
      "obtained_at": "2023-11-07T05:31:56Z"
    }
  ],
  "request": {},
  "delivery_dates": [
    "<any>"
  ],
  "account_status": {
    "prime": true,
    "fresh": true,
    "business": true,
    "charity": "<string>"
  }
}
Check order status using the request_id from your order request.
Processing Time: Orders typically take time to process. During processing, you’ll receive request_processing responses.
Possible responses:
  • Success: Order details with merchant order IDs, tracking, and pricing
  • Processing: Error response with request_processing code
  • Failed: Error response with specific error code
See Error Handling for complete error code reference.

Authorizations

Authorization
string
header
required

Use your client token as the username. Leave the password blank.

Path Parameters

request_id
string
required

The unique identifier for the order request

Response

200
application/json

Order details retrieved successfully

The response is of type object.