Update the bank account for the current user

PATCH /users/{user_id}/bank_accounts/{id}

Update the bank account for the current user

Path parameters

application/json

Body Required

Bank account information

Responses

PATCH /users/{user_id}/bank_accounts/{id}
curl \
 -X PATCH https://client-subdomain.bitbond.net/api/v1/users/{user_id}/bank_accounts/{id} \
 -H "Content-Type: application/json" \
 -d '{"bank_account":{"iban":"string","bic":"string","bank_name":"string","account_owner":"string"}}'
Request example
{
  "bank_account": {
    "iban": "string",
    "bic": "string",
    "bank_name": "string",
    "account_owner": "string"
  }
}
Response examples (201)
{
  "id": "string",
  "iban": "string",
  "bic": "string",
  "bank_name": "string",
  "account_owner": "string"
}