Update claim of a plan
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body
-
claim_amount integer
Claim amount in pennies.
-
claim_start_date date
Claim start date
-
claim_end_date date
Claim end date
-
claim_notes date
Claim notes
PUT
/api/v1/plans/{plan_uuid}/claim/{uuid}
curl \
-X PUT https://api.plannrcrm.com/api/v1/plans/plan_uuid/claim/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 '{"claim_amount":892176,"claim_start_date":"2024-01-21 09:11:11","claim_end_date":"2030-01-21 09:11:11","claim_notes":"Claim notes"}'
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
{
"claim_amount": 892176,
"claim_start_date": "2024-01-21 09:11:11",
"claim_end_date": "2030-01-21 09:11:11",
"claim_notes": "Claim notes"
}
Response examples (200)
{
"uuid": "530c1374-d721-4c19-961d-319be8456269",
"client": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "a1f4fb26-c17d-42ca-9a70-cc6fdf8c70f7",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-01-21T09:11:11+00:00",
"first_name": "Gareth",
"updated_at": "2025-01-21T09:11:11+00:00",
"with_login": true,
"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-01-21T09:11:11+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-01-21T09:11:11+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2025-01-21T09:11:11+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-01-21T09:11:11+00:00"
},
"created_at": "2025-01-21T09:11:11+00:00",
"updated_at": "2025-01-21T09:11:11+00:00",
"claim_notes": "Claim notes",
"claim_amount": {
"amount": {
"example": "25000000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£250,000.00",
"description": "Money amount formatted with currency"
}
},
"claim_end_date": "2030-01-21",
"claim_start_date": "2024-01-21"
}