Retrieve the owners of the client with their personal details.
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
GET /api/v1/client/{client_uuid}/owners
curl \
-X GET https://api.plannrcrm.com/api/v1/client/client_uuid/owners \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"name": "Gareth Thompson",
"uuid": "1fc6c69b-c8c8-4143-8dc7-11d464da6850",
"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": "2024-11-20T13:24:00+00:00",
"first_name": "Gareth",
"updated_at": "2024-11-20T13:24:00+00:00",
"will_notes": 60,
"smoker_since": "2024-11-20T00:00:00.000000Z",
"date_of_birth": "1974-11-20",
"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": "2024-11-20T00: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"
}
]
}