Account
Add new funding instrument
This POST endpoint is used to add a funding account instrument. <br> You can use this endpoint to provide the funding instrument details and add them to your account. <br> The request body requires the funding_details of the instrument, such as account and routing number or debit card details and the country_code of the country code where this funding instrument resides. <br> The response will include a JSON objects containing funding instrument token.
post/payout/account/topup/instruments
Request body
Example request
{
"funding_details": {
"account_number": "123456789",
"routing_number": "021202337",
"bank_account_type": "Checking",
"debit_card_number": "4457684565124683",
"debit_card_expiration": "05/35",
"debit_card_billing_zip": "91304"
},
"country_code": "USA"
}Response
successful operation
Example response
{
"token": "fund_be2f0ab9-a503-473e-aa33-0af196e54647"
}