Update a bank account Run in API Explorer
Ask AI
Body
-
The UUIDs of the accounts who should own the bank account. These must only be client accounts.
-
The friendly name for the bank account.
Maximum length is
255. -
The name of the bank account holder(s) as it appears on statements
Maximum length is
255. -
The bank account number.
-
The bank account sort code
PUT
/api/v2/bank-accounts/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/bank-accounts/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"account_uuids":["75a20181-5387-4f65-b410-0be1e3d3fdf5","2c808862-bdcb-4570-a2b7-e3ae0bcf4b3a","6c7d6b0b-dc9c-4592-b8a9-924d0af9a77b"],"account_name":"My Savings Account","account_holders":"Mr John A Smith","account_number":"01234567","sort_code":"012345"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"account_uuids": [
"75a20181-5387-4f65-b410-0be1e3d3fdf5",
"2c808862-bdcb-4570-a2b7-e3ae0bcf4b3a",
"6c7d6b0b-dc9c-4592-b8a9-924d0af9a77b"
],
"account_name": "My Savings Account",
"account_holders": "Mr John A Smith",
"account_number": "01234567",
"sort_code": "012345"
}
Response examples (200)
{
"uuid": "4e86a5a9-23c4-4b24-bd54-94d78442d8c7",
"accounts": {
"name": "Gareth Thompson",
"role": "client",
"type": "client",
"uuid": "4eb62ebc-6a2a-499e-bc43-ac6a251c532c",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2026-04-09T17:35:07+01:00",
"first_name": "Gareth",
"updated_at": "2026-04-09T17:35:07+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"sort_code": "123456",
"created_at": "2026-04-09T17:35:07+01:00",
"updated_at": "2026-04-09T17:35:07+01:00",
"account_name": "Savings Account",
"account_number": "12345678",
"account_holders": "Mr John A Smith"
}