GET
/
orders
/
{uuid}
curl --request GET \
  --url https://api.sellburst.io/v1/orders/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "customer": 1,
  "gateway": "stripe",
  "status": "pending",
  "paid_at": null,
  "created_at": "2024-01-01T00:00:00"
}

Authorizations

Authorization
string
header
required

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

Headers

X-Merchant
string

The Store Name you want to select

Path Parameters

uuid
string
required

Unique ID of the order

Response

200
application/json
Order data
customer
integer
gateway
string
status
string
paid_at
string
created_at
string