Headers
-
Content-Type
string -
Accept
string
Path parameters
-
account_uuid
integer Required
Body
Required
-
name
string Required Name of the address
-
address_1
string Required First line of the address
-
address_2
string Second line of the address
-
address_3
string Third line of the address
-
address_4
string Fourth line of the address
-
town_city
string Town/City
-
county
string County
-
postcode
string Postcode
-
country
string Country
-
primary
boolean Denotes if primary address.
-
moved_in_month
integer The month the client moved into this address.
-
moved_in_year
integer The year the client moved into this address.
-
moved_out_month
integer The month the client moved out of this address.
-
moved_out_year
integer The year the client moved out of this address.
-
residential_status
string The client's residential status when living at the address.
-
residential_status_other
string The client's residential status if it is not provided in the residential_status options. Must only be provided if residential_status is other.
POST
/api/v1/account/{account_uuid}/address
curl \
--request POST 'https://api.plannrcrm.com/api/v1/account/account_uuid/address' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data '{"name":"Work Address","address_1":"Suite E, 5 The Briars","address_2":"Waterberry Drive","address_3":"The Innovative Centre","address_4":"Waterlooville","town_city":"Waterlooville","county":"Hampshire","postcode":"PO7 7YH","country":"United Kingdom","primary":true,"moved_in_month":6,"moved_in_year":2022,"moved_out_month":1,"moved_out_year":2024,"residential_status":"homeowner","residential_status_other":"Non-tenant occupier"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"name": "Work Address",
"address_1": "Suite E, 5 The Briars",
"address_2": "Waterberry Drive",
"address_3": "The Innovative Centre",
"address_4": "Waterlooville",
"town_city": "Waterlooville",
"county": "Hampshire",
"postcode": "PO7 7YH",
"country": "United Kingdom",
"primary": true,
"moved_in_month": 6,
"moved_in_year": 2022,
"moved_out_month": 1,
"moved_out_year": 2024,
"residential_status": "homeowner",
"residential_status_other": "Non-tenant occupier"
}
Response examples (200)
{
"name": "Work Address",
"uuid": "de17915d-a375-41ae-b60c-003b3dfe7e99",
"county": "Hampshire",
"country": "United Kingdom",
"accounts": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "aff39d8d-2acc-425a-afe1-09df71097fd2",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-06-17T14:20:17+01:00",
"first_name": "Gareth",
"updated_at": "2025-06-17T14:20:17+01:00",
"with_login": true,
"inactive_at": "2025-06-17",
"custom_fields": "App\\Http\\Resources\\CustomFieldValueResource",
"introduced_by": "App\\Http\\Resources\\AccountResource",
"primary_email": "App\\Http\\Resources\\ContactDetailResource",
"can_be_deleted": "false",
"assigned_adviser": "App\\Http\\Resources\\AccountResource",
"next_review_date": "2025-06-17T14:20:17+01:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-06-17T14:20:17+01:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"joint_account_circle": "App\\Http\\Resources\\CircleResource",
"ownership_percentage": 100,
"previous_review_date": "2025-06-17T14:20:17+01:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-06-17T14:20:17+01:00"
},
"postcode": "PO7 7YH",
"address_1": "Suite E, 5 The Briars",
"address_2": "Waterberry Drive",
"address_3": "The Innovative Centre",
"address_4": "Waterlooville",
"town_city": "Waterlooville",
"created_at": "2025-06-17T14:20:17+01:00",
"updated_at": "2025-06-17T14:20:17+01:00",
"move_in_date": "2024-06-17"
}