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":["13e88b19-a1f1-453d-bac3-4b95b22edee1","70f595bd-b38c-41f4-9c45-7d6716a58d59"],"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": [
"13e88b19-a1f1-453d-bac3-4b95b22edee1",
"70f595bd-b38c-41f4-9c45-7d6716a58d59"
],
"account_name": "My Savings Account",
"account_holders": "Mr John A Smith",
"account_number": "01234567",
"sort_code": "012345"
}
Response examples (200)
{
"uuid": "5dd112d0-98cd-4d5c-964d-f789a138185b",
"accounts": {
"name": "Gareth Thompson",
"role": "client",
"type": "client",
"uuid": "b473ab31-ec93-4a1e-adb2-5e84a927d7b9",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-09-17T15:46:54+01:00",
"first_name": "Gareth",
"updated_at": "2025-09-17T15:46:54+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"sort_code": "123456",
"created_at": "2025-09-17T15:46:54+01:00",
"updated_at": "2025-09-17T15:46:54+01:00",
"account_name": "Savings Account",
"account_number": "12345678",
"account_holders": "Mr John A Smith"
}