GET
/
v1
/
order
/
{id}
curl https://api-eu.sulpayments.ch/v1/order/ord_5f1a3b2c \
  -H "Authorization: Bearer {token}"
{
  "id": "ord_5f1a3b2c",
  "status": "paid"
}

Headers

Authorization
string
required
Bearer {token}

Path

id
string
required
Order identifier returned by POST /v1/order.

Response

id
string
Order identifier.
status
string
Current order status. One of waiting_payment, paid, compensated, refunded, chargeback, error, denied.
curl https://api-eu.sulpayments.ch/v1/order/ord_5f1a3b2c \
  -H "Authorization: Bearer {token}"
{
  "id": "ord_5f1a3b2c",
  "status": "paid"
}