Create voucher order
POST/order/voucher/
Place a new order to exchange your funds for a voucher that you can collect and convert later with other vouchers for your preferred amount and asset.
Request
Responses
- 200
The details of the new order for your voucher request.
- application/json
- Schema
- Example (from schema)
Schema
order object
id string
status string
Possible values: [WAITING_FOR_DEPOSIT, DEPOSIT_RECEIVED, DEPOSIT_CONFIRMED, APPROVED, COMPLETED, CANCELED, EXPIRED, REJECTED, REFUNDED]
email email
refund_crypto_address string
created_at string
expires_at string
confirmed_at string
approved_at string
completed_at string
deposit_crypto_address string
from_amount float
from_asset string
to_asset string
destination_type string
Possible values: [crypto, sepa, swift, us]
destination_crypto_address string
destination_bank_address string
destination_bank_name string
destination_bank_account_number string
{
"order": {
"id": "string",
"status": "WAITING_FOR_DEPOSIT",
"email": "user@example.com",
"refund_crypto_address": "string",
"created_at": "string",
"expires_at": "string",
"confirmed_at": "string",
"approved_at": "string",
"completed_at": "string",
"deposit_crypto_address": "string",
"from_amount": 0,
"from_asset": "string",
"to_asset": "string",
"destination_type": "crypto",
"destination_crypto_address": "string",
"destination_bank_address": "string",
"destination_bank_name": "string",
"destination_bank_account_number": "string"
}
}
Loading...