Skip to main content
POST
/
v1
/
policies
/
{policy_id}
/
claims
cURL
curl --request POST \
  --url https://dev-api-cj-agc-vie.fnstack.dev/v1/policies/{policy_id}/claims \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "claim_declaration_type": "BY_POLICY",
  "policy_id": "policy_2c1x7V4r47ynM4RABVm1Co0UKkG",
  "claim_type": "ACCIDENTAL_DEATH",
  "claimant_id": "policy_2c1x7V4r47ynM4RABVm1Co0UKkG",
  "description": "<string>"
}
'
{
  "claim_id": "claim_2c1x7V4r47ynM4RABVm1Co0UKkG"
}

Authorizations

x-api-key
string
header
required

Body

application/json
claim_declaration_type
enum<string>
required
Available options:
BY_POLICY
policy_id
string
required
Minimum string length: 1
Example:

"policy_2c1x7V4r47ynM4RABVm1Co0UKkG"

claim_type
enum<string>
required
Available options:
ACCIDENTAL_DEATH,
PARTIAL_REDEMPTION,
TERM_EXPIRED,
TOTAL_REDEMPTION
Example:

"ACCIDENTAL_DEATH"

claimant_id
string
required

Should be a policy holder ID

Minimum string length: 1
Example:

"policy_2c1x7V4r47ynM4RABVm1Co0UKkG"

description
string

Response

'Make a claim' command accepted and ongoing

claim_id
string
required
Minimum string length: 1
Example:

"claim_2c1x7V4r47ynM4RABVm1Co0UKkG"