Voucher or trading order status
GET/order/check/:id/
Get the status of your voucher or trading order.
Request
Path Parameters
id stringrequired
The id that identifies the placed order
Responses
- 200
The status of the trading order. The available statuses are WAITING_FOR_DEPOSIT
, DEPOSIT_RECEIVED
, DEPOSIT_CONFIRMED
, APPROVED
, COMPLETED
, CANCELED
, EXPIRED
, REJECTED
, REFUNDED
.
- application/json
- Schema
- Example (from schema)
- Example
Schema
status string
Possible values: [WAITING_FOR_DEPOSIT
, DEPOSIT_RECEIVED
, DEPOSIT_CONFIRMED
, APPROVED
, COMPLETED
, CANCELED
, EXPIRED
, REJECTED
, REFUNDED
]
{
"status": "WAITING_FOR_DEPOSIT"
}
{
"status": "COMPLETED"
}
Loading...