POST
/
api
/
v0
/
transfers
/
external-bank-transfer
Create an external bank transfer
curl --request POST \
  --url https://api.devdraft.ai/api/v0/transfers/external-bank-transfer \
  --header 'Content-Type: application/json' \
  --header 'x-client-secret: <api-key>' \
  --data '{
  "sourceWalletId": "<string>",
  "sourceCurrency": "<string>",
  "destinationCurrency": "<string>",
  "destinationPaymentRail": "ach",
  "external_account_id": "<string>",
  "amount": 123,
  "wire_message": "<string>",
  "sepa_reference": "<string>",
  "swift_reference": "<string>",
  "spei_reference": "<string>",
  "swift_charges": "<string>",
  "ach_reference": "<string>"
}'

Authorizations

x-client-secret
string
header
required

Your secret API key. Keep this secure and never expose it in client-side code.

Body

application/json

Response

201

The external bank transfer has been successfully created.