Skip to main content

Delete Claims

Delete a client’s claim. To delete a claim, the id of the claim is required. The endpoint below is used to delete a claim.

DELETE /api/v1/client/claims/{id}

Query param

authorization : *bearer
REQUEST BODY SCHEMA: application/json


NameDescriptionRequiredType
idId of the claim Requiredstring

Response

CodeDescription
200Delete claim information
409Unauthorized

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": [ ]
}
]
}
...
]