Skip to main content
PATCH
/
payout
/
recipients
/
{id}
/
accounts
/
{accountId}
Update a bank account
curl --request PATCH \
  --url http://localhost:4000/v1/payout/recipients/{id}/accounts/{accountId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "routing_number": "021000021",
  "checking_or_savings": "checking",
  "address": {
    "street_line_1": "456 Oak Ave",
    "city": "Austin",
    "state": "TX",
    "postal_code": "73301",
    "country": "USA"
  }
}
'

Path Parameters

id
string
required
accountId
string
required

Body

application/json
routing_number
string

Routing number (US accounts)

Example:

"021000021"

checking_or_savings
enum<string>

Checking or savings

Available options:
checking,
savings
Example:

"checking"

address
object

Updated address for the account holder

Response

Bank account updated