Register a new external bank account for funding batch transfers via direct debit.
Security
UserToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
Currency of the bank account. 3-character currency code — USD for ACH direct debits, CAD for EFT direct debits.
Example:"USD"
Payment type for which the account is used.
ACH— US direct debit (USD)EFT— CA direct debit (CAD)
Enum:"ACH""EFT"
Example:"ACH"
- Production Environmenthttps://api.wise.com/v1/profiles/{profileId}/direct-debit-accounts
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles/{profileId}/direct-debit-accounts
curl -i -X POST \
https://api.wise.com/v1/profiles/12345678/direct-debit-accounts \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"currency": "USD",
"type": "ACH",
"details": {
"routingNumber": "000000000",
"accountNumber": "0000000000",
"accountType": "CHECKING"
}
}'Direct debit account created successfully.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Currency of the bank account. 3-character currency code — USD for ACH, CAD for EFT
Example:"USD"
Payment type for which the account is used.
ACH— US direct debit (USD)EFT— CA direct debit (CAD)
Enum:"ACH""EFT"
Example:"ACH"
Response
{ "id": 1, "currency": "USD", "type": "ACH", "details": { "routingNumber": "000000000", "accountNumber": "0000000000", "accountType": "CHECKING" } }