Commerce APIs
GET Order
Commerce APIs
GET Order
Get details about a given order
GET
/v1/orders/{orderId}
Bearer*
curl --request GET \
--url https://api.bitski.com/v1/orders/{orderId} \
--header 'Bearer: <bearer>'
Access to this API is available upon request to sales@bitski.com.
Path
orderIdrequired
string
The order id
Examples
Response
orderrequired
Order object
{
"order": {
"createdAt": "2023-04-20T21:05:20.976Z",
"currency": "USD",
"fees": "1.00",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"amount": "10.00",
"fees": "1.00",
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"taxes": "1.00"
}
],
"status": "DRAFT",
"subtotal": "10.00",
"taxes": "1.00",
"total": "12.00"
}
}
curl --request GET \
--url https://api.bitski.com/v1/orders/{orderId} \
--header 'Bearer: <bearer>'
{
"order": {
"createdAt": "2023-04-20T21:05:20.976Z",
"currency": "USD",
"fees": "1.00",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"amount": "10.00",
"fees": "1.00",
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"taxes": "1.00"
}
],
"status": "DRAFT",
"subtotal": "10.00",
"taxes": "1.00",
"total": "12.00"
}
}