🛫
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. Claims

Update an existing Claim

Updates an existing claim

Update an existing Claim

PATCH https://staging.api.xclaim.xcover.com/partners/{partnerCode}/claims/{claimUuid}

Update an existing claim belongs to the partner.

Path Parameters

Name
Type
Description

partnerCode*

String

eg. XYZ999

Headers

Name
Type
Description

Authorization*

String

Bearer {{JWT token}}

{
	"sectionFields": [
		{
            "name": "claim_details",
            "fields": [
                {
                    "name": "vehicle_registration",
                    "value": "ZZYYAA99"
                }
            ]
        }
	]
}
{
    "data": {
        "id": "fd98bfd5-7702-4ede-afdc-78686b3bdfb9",
        "claimReference": "4TWMV-G8VLC-CLA",
        "bookingReference": "9PAL3-VWCMR-INS",
        "status": {
            "category": "Submitted"
        }
    }
}

{
    "type": "exception",
    "message": "Unauthorized action"
}

{
    "type": "exception",
    "message": "The section_fields.0.name field is required.",
    "errors": {
        "sectionFields.0.name": [
            "The section_fields.0.name field is required."
        ]
    }
}

PreviousList of all claimsNextGet Claim

Last updated 1 year ago