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

Get Claim By Claim Reference

Returns a single claim by Claim Uuid.

Get Claim

GET https://api.xclaim.xcover-staging.com/api/v2/partners/{partnerCode}/claims/{claimReference}

Returns a single claim by Claim Reference (CLA) that belongs to the partner.

Path Parameters

Name
Type
Description

partnerCode*

String

eg. XYZ999

Headers

Name
Type
Description

Authorization*

String

Bearer {{JWT token}}

{
    "data": {
        "id": "5f86af5e-76c0-478d-b2e0-21aa7384f6bc",
        "claim_reference": "CNVWE-83D8H-CLA",
        "booking_reference": "V7GRN-MZ6W3-INS",
        "quote_reference": "1e8eec04-acdb-4990-9658-fdf0b4cdd7a7",
        "status": "Submitted",
        "language": "en",
        "is_closed": false,
        "claimant": {
            "first_name": "first_name",
            "last_name": "last_name",
            "email": "[email protected]",
            "phone": null,
            "country": null
        }
    }
}
{
    "data": {
        "claim_reference": "4FD44-DGXGT-CLA",
        "booking_reference": "V7GRN-MZ6W3-INS",
        "quote_reference": "1e8eec04-acdb-4990-9658-fdf0b4cdd7a7",
        "processing_status": "pending",
        "failure_reason": null
    }
}

Last updated

Was this helpful?