Skip to main content
GET
/
v1
/
orders
/
{order_id}
/
status
Get Order Status
curl --request GET \
  --url https://sandbox.api.rime.finance/v1/orders/{order_id}/status \
  --header 'Authorization: Bearer <token>'
{
"status": "AWAITING_PAYMENT"
}

Authorizations

Authorization
string
header
required

Bearer access token. Provide as a Authorization: Bearer <token> header.

Path Parameters

order_id
string<uuid>
required

Response

200 - application/json

Order status retrieved successfully

status
enum<string>
required

Status the order is currently in. This status is updated by the system depending on the order's lifecycle state.

Available options:
PLACED,
AWAITING_PAYMENT,
AWAITING_TOKEN_DELIVERY,
COMPLETED,
CANCELLED
order_url
string | null

URL to the order resource, provided when order is completed.

I