GET
/
api
/
v1
/
claims
/
{id}
/
Retrieve a claim by its ID or Reference Number
curl --request GET \
  --url https://dev.superpool.unyte.africa/api/v1/claims/{id}/ \
  --header 'X-API-Key: <api-key>'
{
  "claim_id": "d2d0c0b4-bf72-4a61-a02e-3ab896dd8bf7",
  "claim_reference_number": "CLAIM-20240813-5678",
  "claim_status": "approved",
  "claim_date": "2024-08-13",
  "claimant": {
    "customer_id": "71e1d8b4-c26b-4014-afcb-6f94a8adac1a",
    "customer_name": "Michael Smith",
    "customer_email": "michaelsmith@example.com",
    "customer_phone": "+9876543210"
  },
  "claim_amount": "3200.00",
  "insurer": "Leadway Assurance",
  "product": {
    "name": "Auto Insurance",
    "product_type": "Automobile"
  },
  "policy": "dc4bf271-6491-3812-8f39-58d4ccf39b70",
  "claim_status_timeline": [
    {
      "time_stamp": "2024-08-13 08:45:00",
      "name": "submitted"
    },
    {
      "time_stamp": "2024-08-13 10:00:00",
      "name": "under review"
    },
    {
      "time_stamp": "2024-08-13 12:15:00",
      "name": "pending approval"
    },
    {
      "time_stamp": "2024-08-13 14:30:00",
      "name": "approved"
    }
  ],
  "notes": "Claim approved and payment initiated.",
  "documents": [
    {
      "document_name": "Claim Form",
      "evidence_type": "PDF",
      "blob": "base64encodedstring",
      "uploaded_at": "2024-08-13T08:00:00Z"
    },
    {
      "document_name": "Medical Report",
      "evidence_type": "PDF",
      "blob": "base64encodedstring",
      "uploaded_at": "2024-08-13T08:30:00Z"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string
required

UUID of the claim

Response

200
application/json

Serializer for Claim instances.

This serializer includes fields that are intended to be visible when retrieving or listing Claim objects. It provides a human-readable representation of the Claim, including status descriptions.