Retrieve travel customer policy summaries.

Cf. summary

get/sales/v2/individual/travel/policies

Query parameters

customer_emailstring
Example:john.doe@mail.com

The customer email.

holder_last_namestring
Example:Doe

The policy holder last name.

holder_birthdatestring
Example:1988-05-05

The policy holder date of birth. Mandatory if policy holder last name provided - ISO 8601 format (YYYY-MM-DD).

beneficiary_last_namestring
Example:Doe

The beneficiary last name.

beneficiary_idstring
Example:6ed78a37-3b31-469a-a6a5-76134a0dfe79

Identifier of the beneficiary. Provided on the certificate of the policy on some countries to identify the beneficiaries.

agent_scopestring

The scope selected by the agent when the police was created.

policy_numberstring

Final policy number.

motor_insured_item_vehicle_registration_numberstring
Example:4234BMW

Car's license plate

expire_ininteger

The number of days from today in witch the travel annual policies are going to expire.

Headers

accept-languagestring
Example:en

Accepted language, IANA language codification. If language not managed, "en" will be used by default.

x-axa-contextstring JSON Web Token RFC 7519

The token is formatted as a JWT and provided by the partner.

x-tenant-idstring
Example:42bbd332fa8f48e7bb382165f257a579

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

Response

List of travel policy summaries.

policy_idstring

Unique final policy identifier.

policy_numberstring

Final policy number (only exist if policy is not draft).

draft_policy_numberstring

Draft policy number.

status'DRAFT' | 'ACTIVE' | 'CANCELLED'

Policy's status details.

purchase_datestring date

The date of the subscription (purchase) of the policy - ISO 8601 format (YYYY-MM-DD).

product_namestring

Product name

contracting_actor_namestring

The legal entity relied to the customer.

start_datestring date

Trip start date - ISO 8601 format (YYYY-MM-DD).

end_datestring date

Trip end date - ISO 8601 format (YYYY-MM-DD).

policy_type'SINGLE' | 'ANNUAL'

Type of policy.

Example response

[
  {
    "policy_id": "5ff96b27-cdc1-4090-b2f4-febfb1b1d08f",
    "policy_number": "DRULY031000000823",
    "draft_policy_number": "NBYULY03115985008",
    "status": "ACTIVE",
    "policy_holder": {
      "title": "MR",
      "last_name": "Doe",
      "first_name": "John",
      "external_holder_id": "239015d1-feed-49ab-9a62-40b729faeec8"
    },
    "beneficiaries": [
      {
        "last_name": "Doe",
        "first_name": "John",
        "birth_date": "1990-04-25",
        "id": "SHINT000000016-C"
      }
    ],
    "motor_coverages": {
      "insured_items": {
        "vehicles": [
          {
            "registration_number": "4234BMW",
            "brand": "Volkswagen",
            "model": "Passat SW",
            "colour": "Spatial grey"
          }
        ]
      }
    },
    "purchase_date": "2018-06-20",
    "catalog": {
      "code": "Opodo FR",
      "version": "v12"
    },
    "product_name": "Advanced",
    "contracting_actor_name": "EXPEDIA UK",
    "start_date": "2018-08-20",
    "end_date": "2018-08-20",
    "policy_type": "SINGLE"
  }
]