Update the personal details of one of the owners.

PUT /api/v1/client/{client_uuid}/owners/personal-details/{owner_uuid}

Path parameters

application/json

Body

Responses

PUT /api/v1/client/{client_uuid}/owners/personal-details/{owner_uuid}
curl \
 -X PUT https://api.plannrcrm.com/api/v1/client/client_uuid/owners/personal-details/owner_uuid \
 -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}" \
 -d '{"title":"Mr","first_name":"Gareth","middle_name":"Alex","last_name":"Thompson","maiden_name":"Thompson","email":"gareth@codepotato.co.uk","date_of_birth":"1974-10-16","gender":"Male","ni_number":"AB 12 34 56 C","target_retirement_age":"60","pronouns":"he/him","smoker_status":"non-smoker","residential_status":"settled","country_of_residence":"United Kingdom","marital_status":"married","is_vulnerable":"possibly","is_uk_resident":true,"is_uk_domicile":true,"expected_retirement_age":60,"state_retirement_age":60,"nationalities":["British","Romanian"],"vulnerability_details":"string","third_party_offered":true,"procedure_adaptation":false,"client_preferences":"string","current_state_of_health":"string","state_of_health_explanation":"string","cigarettes_daily":6,"smoker_since":"2024-10-16T00:00:00+01:00","long_term_care_needed":false,"long_term_care_notes":"string","has_will":true,"will_notes":60,"will_last_reviewed":"2024-10-16T00:00:00+01:00","has_power_of_attorney":true,"power_of_attorney_notes":"string","first_contact_date":"string","next_review_date":"string","units_of_alcohol_weekly":42,"height":42,"weight":42,"health_notes":"string","has_iht_planning":true,"iht_planning_notes":"string","has_gifted_family":true,"gift_notes":"string","is_anticipating_inheritance":true,"anticipating_inheritance_notes":"string"}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}

# Payload
{
  "title": "Mr",
  "first_name": "Gareth",
  "middle_name": "Alex",
  "last_name": "Thompson",
  "maiden_name": "Thompson",
  "email": "gareth@codepotato.co.uk",
  "date_of_birth": "1974-10-16",
  "gender": "Male",
  "ni_number": "AB 12 34 56 C",
  "target_retirement_age": "60",
  "pronouns": "he/him",
  "smoker_status": "non-smoker",
  "residential_status": "settled",
  "country_of_residence": "United Kingdom",
  "marital_status": "married",
  "is_vulnerable": "possibly",
  "is_uk_resident": true,
  "is_uk_domicile": true,
  "expected_retirement_age": 60,
  "state_retirement_age": 60,
  "nationalities": [
    "British",
    "Romanian"
  ],
  "vulnerability_details": "string",
  "third_party_offered": true,
  "procedure_adaptation": false,
  "client_preferences": "string",
  "current_state_of_health": "string",
  "state_of_health_explanation": "string",
  "cigarettes_daily": 6,
  "smoker_since": "2024-10-16T00:00:00+01:00",
  "long_term_care_needed": false,
  "long_term_care_notes": "string",
  "has_will": true,
  "will_notes": 60,
  "will_last_reviewed": "2024-10-16T00:00:00+01:00",
  "has_power_of_attorney": true,
  "power_of_attorney_notes": "string",
  "first_contact_date": "string",
  "next_review_date": "string",
  "units_of_alcohol_weekly": 42,
  "height": 42,
  "weight": 42,
  "health_notes": "string",
  "has_iht_planning": true,
  "iht_planning_notes": "string",
  "has_gifted_family": true,
  "gift_notes": "string",
  "is_anticipating_inheritance": true,
  "anticipating_inheritance_notes": "string"
}
Response examples (200)
{
  "name": "Gareth Thompson",
  "uuid": "f393953e-124d-4598-8439-d68ecac835ae",
  "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-10-16T11:10:13+01:00",
  "first_name": "Gareth",
  "updated_at": "2024-10-16T11:10:13+01:00",
  "will_notes": 60,
  "smoker_since": "2024-10-15T23:00:00.000000Z",
  "date_of_birth": "1974-10-16",
  "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-10-15T23: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
}