curl --request GET \
--url https://api.sanka.com/api/v1/public/orders \
--header 'Authorization: Bearer <token>'[
{
"order_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"order_id": 123,
"contact_name": "<string>",
"company_name": "<string>",
"total_price": 123,
"total_price_without_tax": 123,
"number_item": 123,
"currency": "<string>",
"delivery_status": "<string>"
}
]curl --request GET \
--url https://api.sanka.com/api/v1/public/orders \
--header 'Authorization: Bearer <token>'[
{
"order_at": "2023-11-07T05:31:56Z",
"created_at": "2023-11-07T05:31:56Z",
"order_id": 123,
"contact_name": "<string>",
"company_name": "<string>",
"total_price": 123,
"total_price_without_tax": 123,
"number_item": 123,
"currency": "<string>",
"delivery_status": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
OK