# Get Claim Types

Use the id of the claim type you wish to make a claim for when requesting an FNOL.

## Get Claim Types

<mark style="color:blue;">`GET`</mark> `https://api.xclaim.xcover-staging.com/partners/{partnerCode}/policy-types/{policyTypeName}/claim-types`

Returns a list of claim types avaiable for the given policy type, and logged in API consumer.

Use the id of the claim type you wish to make a claim for when requesting an FNOL

#### Path Parameters

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

#### Headers

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

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

{% endtab %}

{% tab title="Response" %}

```json
{
    "data": [
        {
            "id": "2b106dce-984e-483a-9b59-87f050643e95",
            "name": "parcel_damaged",
            "label": "Parcel damaged",
            "description": "Parcel damaged",
            "createdAt": "2023-07-13T02:58:53+00:00",
            "updatedAt": "2023-07-13T02:58:53+00:00",
            "translationsCompletedAt": null,
            "multipleClaims": "UNLIMITED_CLAIMS_ALLOWED",
            "replacerSchemaId": null,
            "riskLimitAmount": "2500.000000000000000000",
            "riskLimitCurrency": "EUR",
            "observingPeriod": 0,
            "multipleClaimsPerClaimType": "UNLIMITED_CLAIMS_ALLOWED",
            "isExcessCollectionRequired": false,
            "isInspectionRequired": false,
            "reserveAmount": "1380.000000000000000000",
            "reserveCurrency": "GEL",
            "isContentInXcms": false,
            "policiesClaimTypeId": "0cea10c3-ba20-44ba-99b2-26526b5e9009",
            "policyTypeId": "365b98f6-fd9c-4abb-b00a-ef9ac05dcde3",
            "claimTypeCategory": null
        }
    ]
}
```

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

{% tab title="404: Not Found " %}
{% tabs %}
{% tab title="Request" %}

{% endtab %}

{% tab title="Response" %}

```json
{
    "type": "exception",
    "message": "Could not find any claim types for the policy type \"bad_policy_type_slug\" in our system"
}
```

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://partner-docs.covergenius.com/xclaim/first-notice-of-loss-fnol/get-claim-types.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
