# 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

<mark style="color:blue;">`GET`</mark> `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

| Name                                          | Type   | Description |
| --------------------------------------------- | ------ | ----------- |
| partnerCode<mark style="color:red;">\*</mark> | String | eg. XYZ999  |

#### Headers

| Name                                            | Type   | Description          |
| ----------------------------------------------- | ------ | -------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {{JWT token}} |

{% tabs %}
{% tab title="200: OK " %}
{% tabs %}
{% tab title="Response" %}

```json
{
    "data": [
        {
            "id": "fd98bfd5-7702-4ede-afdc-78686b3bdfb9",
            "claimReference": "4TWMV-G8VLC-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "quoteReference": "13f16533-df9e-4095-92af-142134ee43c9",
            "status": {
                "category": "Submitted"
            }
        },
        {
            "id": "47da91d3-64ab-4ac4-a24f-d0dd38a423c7",
            "claimReference": "3KK6Q-4JY6F-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "quoteReference": "4c20a1e0-7ec4-40ed-ab17-9cd7e7737608",
            "status": {
                "category": "Submitted"
            }
        },
        {
            "id": "872fd71c-234c-48a3-a57b-490aea563429",
            "claimReference": "49BJ3-WKQRK-CLA",
            "bookingReference": "9PAL3-VWCMR-INS",
            "quoteReference": "a9922818-e5e6-4a93-a119-405044a039f5",
            "status": {
                "category": "Submitted"
            }
        }
    ],
    "meta": {
        "pagination": {
            "total": 3,
            "count": 3,
            "perPage": 25,
            "currentPage": 1,
            "totalPages": 1,
            "links": {}
        }
    }
}
```

{% endtab %}
{% endtabs %}
{% endtab %}
{% endtabs %}
