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>"
}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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK