POST
/
policies
/
{policyId}
/
claims
Issue claim
curl --request POST \
  --url https://staging.yasmina.ai/api/v1/car/policies/{policyId}/claims \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form requested_amount=1000 \
  --form description=
{
  "description": "<string>",
  "requested_amount": "<string>",
  "claim_status": 123,
  "policy_id": 123,
  "updated_at": "<string>",
  "created_at": "<string>",
  "id": 123,
  "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

Response

201
application/json

Created

The response is of type object.