Skip to main content
GET
/
api
/
v1
/
customers
/
{id}
/
claims
Retrieve all claims for a specific customer
curl --request GET \
  --url https://dev.superpool.unyte.africa/api/v1/customers/{id}/claims/ \
  --header 'X-API-Key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "data": [
        {
          "claim_id": "97b8c38f-6015-4ad3-9a2d-d8f2dba48146",
          "policy_id": "8dd84bd4-a68a-451b-8f85-8490042f4d71",
          "claim_status": "pending",
          "claim_amount": "1500.00",
          "date_filed": "2024-12-20",
          "date_resolved": "null"
        }
      ]
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string
required

Response

200 - application/json

View customer's claims

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"