Update claim of a plan Run in API Explorer
Ask AI
PUT
/api/v1/plans/{plan_uuid}/claim/{uuid}
curl \
--request PUT 'https://api.plannrcrm.com/api/v1/plans/6ff8f7f6-1eb3-3525-be4a-3932c805afed/claim/6ff8f7f6-1eb3-3525-be4a-3932c805afed' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}" \
--data '{"claim_amount":892176,"claim_start_date":"2024-06-11","claim_end_date":"2031-06-11","claim_notes":"Claim notes"}'
Request examples
# Headers
X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}
# Payload
{
"claim_amount": 892176,
"claim_start_date": "2024-06-11",
"claim_end_date": "2031-06-11",
"claim_notes": "Claim notes"
}
Response examples (200)
{
"message": "Plan is being deleted."
}
Response examples (409)
{
"message": "Plan is being deleted."
}