POST
/
policies
/
{policyId}
/
claims
Submit claim
curl --request POST \
  --url https://staging.yasmina.ai/api/v1/life-snp/policies/{policyId}/claims \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form claim_type=death \
  --form event_date=2023-12-25 \
  --form supporting_document=@example-file
{
  "claim_id": 123,
  "claim_type": "<string>",
  "requested_amount": 123,
  "claim_status": "<string>",
  "policy_id": 123,
  "created_at": "<string>",
  "updated_at": "<string>",
  "supporting_document": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

policyId
integer
required

Body

multipart/form-data
claim_type
enum<string>
required
Available options:
death,
critical_illness,
total_permanent_disability
event_date
string<date>
required
requested_amount
number

SAR (if applicable)

Example:

500000

description
string

Details of the claim event.

supporting_document
file

Upload relevant claim evidence (e.g., medical report).

Response

Created

claim_id
integer
claim_type
string
requested_amount
number
claim_status
string
policy_id
integer
created_at
string
updated_at
string
supporting_document
string