Create claim for a plan
Headers
-
Content-Type string
-
Accept string
-
X-PLANNR-ACCOUNT-UUID string
Body Required
-
client_uuid string
Client who is claiming this cover. Must be able to access this plan.
-
Claim amount in pennies.
-
Claim start date
-
claim_end_date date
Claim end date
-
claim_notes date
Claim notes
POST
/api/v1/plans/{plan_uuid}/claim
curl \
-X POST https://api.plannrcrm.com/api/v1/plans/plan_uuid/claim \
-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 '{"client_uuid":"70acbfde-171e-4788-81df-6f1e31dd5086","claim_amount":892176,"claim_start_date":"2024-01-24 22:40:39","claim_end_date":"2030-01-24 22:40:39","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
{
"client_uuid": "70acbfde-171e-4788-81df-6f1e31dd5086",
"claim_amount": 892176,
"claim_start_date": "2024-01-24 22:40:39",
"claim_end_date": "2030-01-24 22:40:39",
"claim_notes": "Claim notes"
}
Response examples (201)
{
"uuid": "a8859cb9-799f-40c9-b211-0c5e69180d47",
"client": {
"firm": "App\\Http\\Resources\\FirmResource",
"name": "Gareth Thompson",
"role": "client",
"tags": "App\\Http\\Resources\\TagResource",
"type": "client",
"uuid": "01e525f2-39c7-474e-8435-8cacac4bad24",
"email": "gareth@codepotato.co.uk",
"groups": "App\\Http\\Resources\\GroupResource",
"owners": "App\\Http\\Resources\\AccountResource",
"last_name": "Thompson",
"created_at": "2025-01-24T22:40:39+00:00",
"first_name": "Gareth",
"updated_at": "2025-01-24T22:40:39+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-24T22:40:39+00:00",
"has_joint_account": true,
"current_time_entry": "App\\Http\\Resources\\TimeEntryResource",
"first_contact_date": "2025-01-24T22:40:39+00:00",
"external_references": "App\\Http\\Resources\\ExternalReferenceResource",
"assigned_paraplanner": "App\\Http\\Resources\\AccountResource",
"previous_review_date": "2025-01-24T22:40:39+00:00",
"primary_phone_number": "App\\Http\\Resources\\ContactDetailResource",
"assigned_administrator": "App\\Http\\Resources\\AccountResource",
"anniversary_review_date": "2025-01-24T22:40:39+00:00"
},
"created_at": "2025-01-24T22:40:39+00:00",
"updated_at": "2025-01-24T22:40:39+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-24",
"claim_start_date": "2024-01-24"
}