🛫
XClaim API Partner Docs
  • Introduction
  • Authentication
  • Claim Creation Workflows
    • Appendix
  • First Notice Of Loss (FNOL)
    • Get Claim Selector
    • Get Claim Types
    • Get Fnol
  • Claims
    • Create a new Claim
    • List of all claims
    • Update an existing Claim
    • Get Claim
    • Claim Policy Details
    • List of claims by booking reference
    • List of claims by claim type
    • Claim Files
      • Upload File
      • Upload File for an Existing Claim
      • List of Files by Claim
      • Get File
      • Delete File
  • Webhooks
    • Overview
    • Verifying signatures
    • Claim Webhooks
  • Integrations
    • Cancel For Any Reason (CFAR)
    • Claim Eligibility
      • Get Claim Eligibility Check
Powered by GitBook
On this page
  1. First Notice Of Loss (FNOL)

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://staging.api.xclaim.xcover.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"
}
PreviousGet Claim SelectorNextGet Fnol

Last updated 1 year ago