Update a contact detail Run in API Explorer
Ask AI
Body
-
Description of contact detail
Maximum length is
255. -
The UUIDs of the accounts who should own the contact detail. These must only be client accounts.
-
The UUIDs of the accounts who should have the contact detail as their primary contact detail.
PUT
/api/v2/contact-details/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v2/contact-details/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 '{"name":"Work phone number","value":"+44751488454","account_uuids":["d06ed15c-2c42-4aff-954d-f0d9db131dad","aa047133-9535-4eb8-9d93-89b16fab6bb3","6ce7f0bc-9019-4119-a0ef-a81640300cc4"],"primary_account_uuids":["a448db67-7847-40f1-b038-4a25dd902560","11630b73-f792-4edd-a30f-462173e0ca10","214adc4a-410a-4b51-b448-89ed2f89f493"]}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"name": "Work phone number",
"value": "+44751488454",
"account_uuids": [
"d06ed15c-2c42-4aff-954d-f0d9db131dad",
"aa047133-9535-4eb8-9d93-89b16fab6bb3",
"6ce7f0bc-9019-4119-a0ef-a81640300cc4"
],
"primary_account_uuids": [
"a448db67-7847-40f1-b038-4a25dd902560",
"11630b73-f792-4edd-a30f-462173e0ca10",
"214adc4a-410a-4b51-b448-89ed2f89f493"
]
}
Response examples (200)
{
"name": "Work number",
"type": "phone_number",
"uuid": "1b4bd0a0-7ec6-48eb-a453-21be2f6a732f",
"value": "+443330903630",
"accounts": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "25cc533e-6ab9-4b23-9d8c-71cd938c26ba",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"circles": "App\\Http\\Resources\\CircleResource",
"last_name": "Thompson",
"photo_url": "https://eu.ui-avatars.com/api/?name=gareth+thompson",
"created_at": "2026-02-26T15:22:28+00:00",
"first_name": "Gareth",
"updated_at": "2026-02-26T15:22:28+00:00",
"with_login": true,
"inactive_at": "2026-02-26",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"referral_code": "ABC12345",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2026-02-26T15:22:28+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2026-02-26T15:22:28+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"last_interaction_at": "2026-02-26 15:22:28",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2026-02-26T15:22:28+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2026-02-26T15:22:28+00:00"
},
"created_at": "2026-02-26T15:22:28+00:00",
"updated_at": "2026-02-26T15:22:28+00:00",
"phone_number_meta": {
"country": "GB",
"formatted": "0333 090 3630"
}
}