Retrieve a travel claim's incidents.

Cf. summary

get/insurance/travel/v2/claims/{claim_id}/incidents

Path parameters

claim_idstring required

Claim identifier.

Example:e941c951-6101-41b8-b227-28c0495227f3

Claim identifier.

Headers

x-environment'test' | 'preprod' | 'prod'

When calling the API, the client can precise in which environment the information should be sent. The environments are listed below:

  • test --> UAT / User Acceptance Environment.
  • preprod --> Pre-production (real data, real clients to validate the software before release to production).
  • prod --> Production environment.
x-tenant-idstring
Example:42bbd332fa8f48e7bb382165f257a579

The unique identifier of the tenant, the value should be provided by AXA.

Response

List of the travel claim's incident.

incident_idstring required

Identifier of the incident.

type'BAGGAGE' | 'CANCELLATION' | 'CURTAILMENT' | 'DELAY' | 'GENERAL' | 'MEDICAL' | 'MISSED_TRANSPORTATION' | 'UNCOVERED' | 'VEHICLE' required

Type of the incident.

Example response

[
  {
    "incident_id": "9e4150c2-e53e-42db-bca3-7d5fea0a2825",
    "type": "BAGGAGE",
    "links": {
      "self": {
        "href": "/insurance/travel/v2/claims/e941c951-6101-41b8-b227-28c0495227f3/baggage_incidents/9e4150c2-e53e-42db-bca3-7d5fea0a2825"
      }
    }
  }
]