Create FX Order
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"walletId": "WA1426785367490592",
"fromAccountId": "AC1426789347885088",
"toAccountId": "AC1426788133634080",
"fxQuoteId": "QT1625150053154848",
"requestId": "string"
}
Request samples
curl --location --request POST '/fx/order' \
--header 'Content-Type: application/json' \
--data-raw '{
"walletId": "WA1426785367490592",
"fromAccountId": "AC1426789347885088",
"toAccountId": "AC1426788133634080",
"fxQuoteId": "QT1625150053154848",
"requestId": "string"
}'
Responses
application/json {
"id": "FX1625150061543456",
"requestId": "string",
"walletId": "WA1426785367490592",
"sellCcy": "string",
"sellAmount": 0,
"buyCcy": "string",
"buyAmount": 0,
"fixedSide": "BUY",
"sellRate": 0,
"valueDate": "2024-07-15",
"status": "Processing",
"createdTime": "string",
"updatedTime": "string"
}
Modified at 2024-07-19 02:19:17