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":["ea45e3d2-4020-429d-b6d6-5f7fe55c700f","a9897a67-8a06-4fb6-830e-adf60c886208"],"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": [
"ea45e3d2-4020-429d-b6d6-5f7fe55c700f",
"a9897a67-8a06-4fb6-830e-adf60c886208"
],
"account_name": "My Savings Account",
"account_holders": "Mr John A Smith",
"account_number": "01234567",
"sort_code": "012345"
}
Response examples (200)
{
"uuid": "57a101a4-37d1-4005-9e14-35e5caa1bd4a",
"accounts": {
"name": "Gareth Thompson",
"role": "client",
"type": "client",
"uuid": "1af44708-59df-4a92-a718-00cb78332b2f",
"email": "gareth@codepotato.co.uk",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=Gareth+Thompson",
"created_at": "2025-10-08T10:40:17+01:00",
"first_name": "Gareth",
"updated_at": "2025-10-08T10:40:17+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource"
},
"sort_code": "123456",
"created_at": "2025-10-08T10:40:17+01:00",
"updated_at": "2025-10-08T10:40:17+01:00",
"account_name": "Savings Account",
"account_number": "12345678",
"account_holders": "Mr John A Smith"
}