Retrieve the owners of the client with their personal details.

GET /api/v1/client/{client_uuid}/owners

Headers

  • X-PLANNR-ACCOUNT-UUID string

Path parameters

  • client_uuid string Required

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • uuid string
      • created_at string
      • updated_at string
      • title string
      • first_name string
      • last_name string
      • name string
      • name_with_title string
      • email string
      • gender string
      • ni_number string
      • date_of_birth string
      • nickname string
      • target_retirement_age string
      • pronouns string
      • smoker_status string
      • residential_status string
      • country_of_residence string
      • marital_status string
      • is_vulnerable string
      • is_uk_resident boolean
      • is_uk_domicile boolean
      • expected_retirement_age integer
      • state_retirement_age integer
      • nationalities array[string]
      • third_party_offered boolean
      • procedure_adaptation boolean
      • cigarettes_daily integer
      • smoker_since string
      • last_used_nicotine_products_date string
      • long_term_care_needed boolean
      • has_will boolean
      • will_notes integer
      • will_last_reviewed string
      • has_power_of_attorney boolean
GET /api/v1/client/{client_uuid}/owners
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/client/6ff8f7f6-1eb3-3525-be4a-3932c805afed/owners' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
  "data": [
    {
      "name": "Gareth Thompson",
      "uuid": "3aeb55e8-e549-4b17-a9b2-d53f1852f891",
      "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-06-25T15:10:41+01:00",
      "first_name": "Gareth",
      "updated_at": "2025-06-25T15:10:41+01:00",
      "will_notes": 60,
      "smoker_since": "2025-06-24T23:00:00.000000Z",
      "date_of_birth": "1975-06-25",
      "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-06-24T23: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"
    }
  ]
}