For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Claim Types

Returns a list of claim types available 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.

Get Claim Types

GET 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*

String

eg. XYZ999

policyTypeName*

String

Policy type slug string

Headers

Name
Type
Description

Authorization*

String

Bearer {{JWT token}}

Content-Type*

String

application/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
        }
    ]
}

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

Last updated

Was this helpful?