Skip to main content
GET
/
v1
/
public
/
orders
/
{order_id}
Get Order
curl --request GET \
  --url https://api.sanka.com/v1/public/orders/{order_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "order_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "order_id": 123,
  "status": "<string>",
  "delivery_status": "<string>",
  "total_price": 123,
  "total_price_without_tax": 123,
  "number_item": 123,
  "currency": "<string>",
  "company_id": "<string>",
  "contact_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

order_id
string
required

Query Parameters

external_id
string | null

Response

OK

id
string
required
order_at
string<date-time>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
order_id
integer | null
status
string | null
delivery_status
string | null
total_price
number | null
total_price_without_tax
number | null
number_item
integer | null
currency
string | null
company_id
string | null
contact_id
string | null