Orders

ORD201: Get Order Shipping Amount

get
Authorizations
Path parameters
numberstringRequired

Unique identifier for the order.

Example: 2594887831811953
Responses
200
OK
application/json
get
GET /api/i2/orders/{number}/ HTTP/1.1
Host: sandbox.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
  "number": "2594887831811953",
  "currency": "TRY",
  "shipping_amount": 10,
  "packages": [
    {
      "number": "2595053219311870",
      "status": 3
    }
  ]
}

Was this helpful?