Create beneficiary for a plan
Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Path parameters
-
plan_uuid
string Required
Body
Required
-
name
string Required Name of the beneficiary.
-
percentage
number Required Percentage due to the beneficiary.
POST
/api/v1/plans/{plan_uuid}/beneficiary
curl \
--request POST 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/beneficiary' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"name":"John Smith","percentage":50.25}'
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
{
"name": "John Smith",
"percentage": 50.25
}
Response examples (201)
{
"name": "Beneficiary name",
"uuid": "d6f4856e-33b2-4e35-8c99-30883462f8a8",
"cover": {
"uuid": "d241eb7a-3f81-42f4-9a22-9e0434ea42db",
"client": "App\\Http\\Resources\\AccountResource",
"excess": {
"amount": {
"example": "10000",
"description": "Money amount at their lowest denominator (for example: pennies)"
},
"currency": {
"example": "GBP",
"description": "Currency of the money"
},
"formatted": {
"example": "£100.00",
"description": "Money amount formatted with currency"
}
},
"cover_type": "critical_illness",
"created_at": "2025-04-02T13:27:57+01:00",
"indexation": 1.4,
"updated_at": "2025-04-02T13:27:57+01:00",
"benefit_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"
}
},
"benefit_status": "active",
"benefit_frequency": "monthly"
},
"created_at": "2025-04-02T13:27:57+01:00",
"percentage": 50,
"updated_at": "2025-04-02T13:27:57+01:00"
}