Create a transfer

POST {{baseUrl}}/v1/businessAccount/transfers

A transfer can be made from an existing business account to a blockchain location.

Body Params

idempotencyKey string (REQUIRED) Universally unique identifier (UUID v4) idempotency key. This key is utilized to ensure exactly-once execution of mutating requests.

destination object (REQUIRED)

  • type string (REQUIRED)

  • addressId string (REQUIRED) The ID of the verified blockchain recipient address.

amount object (REQUIRED)

  • amount string (REQUIRED) Magnitude of the amount, in units of the currency, with a ..

  • currency string (REQUIRED) Currency code for the amount.

Request Body

{"idempotencyKey"=>"{{$guid}}", "destination"=>{"type"=>"verified_blockchain", "addressId"=>"990f9293-1f62-54ac-9438-29e359f96324"}, "amount"=>{"amount"=>"3.14", "currency"=>"USD"}}

HEADERS

KeyDatatypeRequiredDescription
Content-Typestring
Acceptstring

RESPONSES

status: Created

{"data":{"id":"4b05a889-631f-4803-9540-a16ec0ff2e25","source":{"type":"wallet","id":"1002753955"},"destination":{"type":"blockchain","address":"DnX6KhBqUK1sHUBxh3vqAL63BLhaiUBDHhLHfRsGggEH","chain":"SOL"},"amount":{"amount":"3.14","currency":"USD"},"status":"pending","createDate":"2024-01-16T22:39:44.240Z"}}