List of claims by booking reference

Returns a lits of all claims in the system from the given partner by booking reference.

List of claims by booking reference

GET https://staging.api.xclaim.xcover.com/partners/{partnerCode}/bookings/{ins}/claims

Returns a list of all claims in the system from the given partner by booking reference

Path Parameters

NameTypeDescription

partnerCode*

String

eg. XYZ999

Headers

NameTypeDescription

Authorization*

String

Bearer {{JWT token}}

{
    "data": [
        {
            "id": "fd98bfd5-7702-4ede-afdc-78686b3bdfb9",
            "claimReference": "4TWMV-G8VLC-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "status": {
                "category": "Submitted"
            }
        },
        {
            "id": "47da91d3-64ab-4ac4-a24f-d0dd38a423c7",
            "claimReference": "3KK6Q-4JY6F-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "status": {
                "category": "Submitted"
            }
        },
        {
            "id": "872fd71c-234c-48a3-a57b-490aea563429",
            "claimReference": "49BJ3-WKQRK-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "status": {
                "category": "Submitted"
            }
        }
    ],
    "meta": {
        "pagination": {
            "total": 3,
            "count": 3,
            "perPage": 25,
            "currentPage": 1,
            "totalPages": 1,
            "links": {}
        }
    }
}

Last updated