Retrieve the owners of the client with their personal details.
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
client_uuid
string Required
GET
/api/v1/client/{client_uuid}/owners
curl \
--request GET 'https://api.plannrcrm.com/api/v1/client/client_uuid/owners' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Gareth Thompson",
"uuid": "9087f73a-2241-4966-ab80-95b048f7aa0d",
"email": "gareth@codepotato.co.uk",
"title": "Mr",
"gender": "Male",
"has_will": true,
"nickname": "Garth",
"pronouns": "he/him",
"last_name": "Thompson",
"ni_number": "AB 12 34 56 C",
"created_at": "2025-04-02T13:27:55+01:00",
"first_name": "Gareth",
"updated_at": "2025-04-02T13:27:55+01:00",
"will_notes": 60,
"smoker_since": "2025-04-01T23:00:00.000000Z",
"date_of_birth": "1975-04-02",
"is_vulnerable": "possibly",
"nationalities": [
"British",
"Romanian"
],
"smoker_status": "non-smoker",
"is_uk_domicile": true,
"is_uk_resident": true,
"marital_status": "married",
"name_with_title": "Mr Gareth Thompson",
"cigarettes_daily": 6,
"residential_status": "settled",
"will_last_reviewed": "2025-04-01T23:00:00.000000Z",
"third_party_offered": true,
"country_of_residence": "United Kingdom",
"procedure_adaptation": false,
"state_retirement_age": 60,
"has_power_of_attorney": true,
"long_term_care_needed": false,
"target_retirement_age": "60",
"expected_retirement_age": 60,
"last_used_nicotine_products_date": "2021-10-01"
}
]
}