Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"walletId": "string",
"currency": "USD",
"accountName": "string",
"swiftBic": "DHBKHKHHXXX",
"bankCode": "012",
"accountNumber": "788000123",
"country": "string",
"city": "string",
"address": "string"
}
Request samples
curl --location --request POST '/recipient/chats' \
--header 'Content-Type: application/json' \
--data-raw '{
"walletId": "string",
"currency": "USD",
"accountName": "string",
"swiftBic": "DHBKHKHHXXX",
"bankCode": "012",
"accountNumber": "788000123",
"country": "string",
"city": "string",
"address": "string"
}'
Responses
application/json {
"recipientId": "string"
}
Modified at 2024-08-13 10:18:35