Get Claim By Id
Get specific claim details of a client using a unique claim ID. To get a specific claim, the id of the claim is required.
GET /api/v1/client/claims/{id}
Query param
authorization : *bearer
REQUEST BODY SCHEMA: application/json
Name | Description | Required | Type |
---|---|---|---|
id | Id of the claim | Required | string |
Response
Code | Description |
---|---|
200 | claim information |
409 | Unauthorized |
Response Sample
Content type
application/json
[
{
"statusCode": 200,
"success": true,
"data": [
{
"dateOfLoss": "12-12-12",
"dateOfNotification": "2020-12-12",
"incidentLocation": "Accra central, Accra",
"description": "A boy crossed the road carelessly, I tried to avoid him then my car crashed into a nearby barricade",
"lossCategory": "MEDICALS",
"estimatedLossAmount": 220000,
"assets": [],
"thirdPartyLoss": {},
"currency": "GHS",
"exchangeRate": 0.1,
"id": "619c0911b46b424f5f3e470f",
"createdAt": "2020-05-05T00:00:00.000Z",
"updatedAt": "2020-05-05T00:00:00.000Z",
"status": "ACTIVE",
"stage": "REVIEW",
"policy": {},
"documents": [ ],
"settlements": [ ],
"reviews": [ ],
"meta": [ ]
}
]
}
...
]