v3

latestOpenAPI 3.0.3UNLICENSED2026-07-2796235396.3 KB
orders-orders

Create order

Create client order based on selected quote

post/orders/clients/orders

Request body

quoteIdstring uuid required

General format for UUID

amountnumber required

Positive double

referencestring required
twoFaCodestring required
narrationstring

A description for the transfer that's passed to the recipient of the orders

type'BUY' | 'SELL'

Example request

{
  "quoteId": "3a5aaea8-504a-4404-ad3d-b82574fba5e5"
}

Response

Order created successfully

successboolean required

Status can be successful or failed, a value of true indicates success.

messagestring

additional message describing status.

dataobject

Data associated with the status, this will not always be present

Example response

{
  "success": true,
  "error": {
    "code": "UNKNOWN_ERROR",
    "message": "Request could not be completed due to an error"
  }
}