Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
The following checklist describes the high level tasks that need to be completed in order to completely integrate the XCover API and begin selling insurance policies.
Outline of some frequently implemented approaches for specific industries
Most users will manage policies on XCover.com



quote_request: {
"customer_language": "en", //LANGUAGE: en for English, id for Bahasa
"customer_country": "ID", //POLICY LOCALE: AU for English, ID for Indonesia
"currency": "IDR", //AUD for Australia Dollar, IDR for Indonesian Rupiahcurrency_config: {
currencyDisplay: 'symbol', //'symbol' or 'narrowSymbol'
trailingZeroDisplay: 'stripIfInteger'//'auto' or 'stripIfInteger'
},https://api.xcover.com/x/partners/:partner_id/bookings/:quote_package_id/opt_outGeneral error management
Travel Insurance such as Comprehensive, Medical, Baggage, Cancellation, Smart Delay, Insolvency, and more - Offered via Online Travel Agents and other platforms.
How to add Cover Genius domains to your Apple Private Relay Email Sources
FAQs specific to insurance policies in the events space


QuoteStatus:
RECEIVED
CONFIRMED
CANCELLED
DELETED
PENDING_PAYMENT
FAILED
RENEWED 
import json
import requests
from requests.adapters import HTTPAdapter
from urllib3.util.retry import Retry
from logging import getLogger
logger = getLogger("xcover")
url = "https://api.xcover.com/x/partners/YOUR_PARTNER_ID/instant_booking/"
payload = json.dumps({
# ... generated payload
})
headers = {
# ... other required headers
'x-idempotency-key': 'db55f986-c30c-4883-ac4f-0d2cfada6d3f'
}
retry_strategy = Retry(total=3, status_forcelist=[423, 429, 502, 503, 504], backoff_factor=5)
with requests.Session() as session:
session.mount(url, HTTPAdapter(max_retries=retry_strategy))
response = session.post(url, headers=headers, data=payload)
if response.status_code in (200, 409):
if response.status_code == 409:
# this request is a duplicate, let's log it as a warning
logger.warning("duplicated xcover request")
# successfull response
print(response.json())
else:
# error response
print(response.status_code)
Overview of the payment process where the partner is the Merchant of Record (MoR)
2018-01-01T17:00:01Z2018-01-01T17:00:00+01:002018-01-01T17:00:01.04399-04:00

"partner_metadata": {
"trip_name": "Holiday trip",
"primary_contact": "Dana Skulky",
"primary_contact_number": "+123123123",
"primary_contact_email": "[email protected]",
"custom_platform_transaction_reference": "XZY123" }Presenting the Insurance/Protection offer in the purchase path







var apiKey = environment.api_key,
apiSecret = environment.api_secret,
date = (new Date()).toUTCString(),
sigContent = 'date: ' + date,
sig = CryptoJS.HmacSHA512(sigContent, apiSecret).toString(CryptoJS.enc.Base64
authHeader = 'Signature keyId="' + apiKey + '",algorithm="hmac-sha512",signature="' + encodeURIComponent(
pm.environment.set("authHeader", authHeader); // Authorization header
pm.environment.set("date", date); // Date headerimport requests
# Module defined below
from auth import SignatureAuth
# Prodivded by the assigned Client Solutions Engineer (CSE)
XCOVER_API_KEY = ""
XCOVER_SECRET = ""
def _apply_auth(request):
request.headers.update(
SignatureAuth(XCOVER_API_KEY,
XCOVER_SECRET).sign()
)
return request
session = requests.Session()
request = requests.Request('POST', url, json=payload, headers=headers
response = session.send(_apply_auth(request.prepare()))
print(response.status_code)
# auth.py
"""
Authentication related module.
"""
from __future__ import unicode_literals
from base64 import b64encode
from hashlib import sha512
import hmac
from urllib.parse import quote
from datetime import datetime
from time import mktime
from wsgiref.handlers import format_date_time
def http_date():
now = datetime.utcnow()
return format_date_time(mktime(now.timetuple()))
class SignatureAuth:
"""Class for basic authentication support."""
def __init__(self, key, secret):
self._key = key
self._secret = secret
self._headers = None
def create_signature(self, date):
raw = 'date: {date}'.format(date=date)
hashed = hmac.new(self._secret.encode('utf-8'), raw.encode('
return quote(b64encode(hashed), safe='')
def build_signature(self, signature, key):
template = ('Signature keyId="%(key)s",algorithm="hmac-sha512",'
'signature="%(signature)s"')
return template % {
'key': key,
'signature': signature
}
def sign(self):
date = http_date()
auth = self.build_signature(signature=self.create_signature(date), key=self.
return {
'Date': date,
'Authorization': auth,
'X-Api-Key': self._key,
}



using System;
using System.Web;
using System.Text;
using System.Security.Cryptography;
class Program {
static void Main(string[] args) {
String rfc1123DateString = DateTime.Now.ToString("R");
String apiKey = "";
String apiSecret = "";
String signatureContentString = "date: " + rfc1123DateString;
HMACSHA512 hmacsha512 = new HMACSHA512(Encoding.UTF8.GetBytes(apiSecret));
byte[] bytes = hmacsha512.ComputeHash(Encoding.UTF8.GetBytes(signatureContentString));
String signature = Convert.ToBase64String(bytes);
String authHeader = "Signature keyId=\""+apiKey+"\",algorithm=\"hmac-sha512\",signature=\""+HttpUtility.UrlEncode(signatureString)+"\"";
return authHeader;
}
}require "base64"
require "time"
require 'openssl'
require 'cgi/util'
def auth_header
rfc1123_date_string = Time.now.httpdate
api_key = ""
api_secret = ""
sig_content = "date: #{rfc1123_date_string}"
sig = OpenSSL::HMAC.digest(OpenSSL::Digest.new('sha512'), api_secret, sig_content)
encoded_sig = Base64.strict_encode64(sig)
"Signature keyId=\"#{api_key}\",algorithm=\"hmac-sha512\",signature=\"#{CGI.escape(encoded_sig)}\""
end






{
"currency": "AUD",
"quotes": {
"0": {
"policy_start_date": "2021-03-28T10:50:20.350000+00:00",
"policy_end_date": "2022-03-28T10:50:20.350000+00:00",
"price": 15,
"price_formatted": "A$15.00",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Furniture Protection",
"policy_code": "PFUO01CG",
"policy_version": "1d69c52e-580c-4a7b-b87c-7658f8057a86",
"category": "furniture-insurance",
"content": {
"title": "Full Furniture Protection",
"header": "Furniture Cover For Life",
"description": "Theft, damage and expanded warranty that covers the product for life. Cancel anytime.",
"optout_msg": "<p>.</p>",
"inclusions": [
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Full replacement if the item can’t be repaired."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Cancel anytime."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Covers theft."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Covers repairs when your item is damaged."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Covers what the manufacturer's warranty doesn’t."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ /year. Cancel anytime.",
"description": "Extends warranty protection for the life of the policy."
}
],
"disclaimer": "<p>I am over 18 and agree to the terms of this policy. This cover is powered by XCover.com and underwritten by Pacific International Insurance Pty Ltd.</p>"
}
},
"pds_url": "https://www.xcover.com/en/pds/__I6F3D__ffp-pacific/",
"files": []
}
},
"errors": {}
}{
"currency": "AUD",
"customer_country": "AU",
"customer_language": "en",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"request": [
{
"policy_type": "product_insurance",
"policy_type_version": "1",
"policy_start_date": "2021-03-28T10:43:56.371Z",
"last_used_date": "2021-03-28",
"purchase_date": "2021-03-28",
"renewal_period": "annual",
"retail_value": 300,
"category": "furniture-insurance",
"title": "Bed Base",
"brand": "BaseWorks",
"model": "Syntia XXL",
"description": "Durable, king sized bed frame",
"condition": "new"
}
]
}{
"renewal_id": "xeJsp-UcMlR-FXv0U-UPD",
"quotes": [
{
"id": "25fb6ea3-3236-4743-b077-ce77b8631fe0",
"policy_start_date": "2021-07-27T13:25:00+00:00",
"policy_end_date": "2021-08-26T13:25:00+00:00",
"status": "RECEIVED",
"price": 16.0,
"price_formatted": "US$16.00",
"policy": {
"policy_type": "renters_insurance",
"policy_name": "Renters Insurance",
"policy_code": "RE01RHI",
"policy_version": "cca6cb3a-5cdf-412b-959a-9911e30e7dd1",
"category": null,
"content": {},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com and underwritten by Markel International Insurance Company Limited",
"name": "Markel International Insurance Company Limited"
},
"claim_selector_id": "",
"show_benefits": true
},
"insured": [
{
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 16.0,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$16.00",
"taxes": [
]
},
"duration": "30 00:00:00",
"benefits": [
{}
],
"commission": {
},
"created_at": "2021-06-22T16:04:55.416289Z",
"confirmed_at": null,
"updated_at": "2021-06-22T16:04:55.416306Z",
"cancelled_at": null,
"is_renewable": false,
"is_pricebeat_enabled": null,
"cover_amount": null,
"cover_amount_formatted": null,
"pds_url": "https://www.xcover.com/en-us/pds/4XNE7-B8YGP-INS?policy_type=renters_insurance_v1",
"attachments": [],
"files": [],
"extra_fields": {
},
"surcharge": {
"total_amount": null,
"total_amount_formatted": null,
"surcharges": null
},
"discount_price": 16.0,
"discount_price_formatted": "US$16.00",
"discount_amount": 0.0,
"discount_amount_formatted": "US$0.00"
}{
}{
"quotes": [
{
"id": "{{quote_1_id}}",
"policy_start_date": "{{policy_start_date}}",
"insured": [
{
...
}
]
}
]
}
{
"quotes": {
"0": {
...,
"instalment_plans": [
{
"name": "1year-monthly",
"label": "1Year-Monthly",
"amount": 308.0,
"first_instalment_amount": 25.67
}
]
}
}
}
{
"quotes": [
{
"id": "UUID",
"instalment_plan": "1year-monthly"
}
],
"policyholder": {
...
}
}{
"quotes": [
{
"id": "95230b02-9f7f-463f-be6d-81b46e3c5955",
"next_payment": {
"id": "ba718007-964a-4115-b0f9-f746f20d6bdd",
"number": 2,
"quote": "95230b02-9f7f-463f-be6d-81b46e3c5955",
"period_start_date": "2021-09-25T02:47:00Z",
"period_end_date": "2021-10-24T02:47:00Z",
"status": "UNPAID",
..
"tax": {
"taxes": [],
"total_amount_without_tax": "7.50",
"total_amount_without_tax_formatted": "€7.50"
},
"surcharges": {},
"payment_failures": null
},
"paid_until": "2021-08-25T02:47:12.115862Z",
"payment_schedule": [
{
"id": "2b0c7a96-be7a-450b-86b1-04feb5813b37",
"number": 1,
....
},
"total_amount_paid": 7.5,
"total_amount_due": 82.5
}
],
"currency": "USD"
}{
// Response
}{
"quotes": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"instalment_id": "286b1dc2-e2f0-40ea-bc39-079ef019b7d0",
"instalment_number": 0,
"payment_attempted_date": "2019-08-24T14:15:22Z",
"payment_status": "PAID",
"payment_failures": {}
}
]
}import base64
import hashlib
import hmac
from
{
'event': 'BOOKING_CREATED',
'payload': {
'id': '8AMKH-KQ8NR-INS',
'status': 'CONFIRMED',
'currency': 'USD',
'total_price': 68.71,
'total_price_formatted': 'US$68.71',
'partner_transaction_id': null,
'quotes': [
{
'id': '8bfb48ab-6947-4f34-a932-c4dcede958f6',
'policy_start_date': '2023-10-08T00:00:49.751227+00:00',
'policy_end_date': '2023-10-13T00:00:49.751247+00:00',
'status': 'CONFIRMED',
'price': 68.71,
'price_formatted': 'US$68.71',
'policy': {
'policy_type': 'travel_medical',
'policy_name': 'PolicyVersion 0',
'policy_version': 'e94df011-ee0b-44a1-bdb1-1dd05cb67fc7'
},
'duration': '5 00:00:00.000020',
'total_renewed_times': 0
}
]
}
}{
'event': 'BOOKING_UPDATED',
'payload': {
'id': 'TKBZN-XGPAX-INS',
'status': 'CONFIRMED',
'currency': 'USD',
'total_price': 68.71,
'total_price_formatted': 'US$68.71',
'partner_transaction_id': null,
'quotes': [
{
'id': '4d3b7919-9372-4c54-bdaf-05f770ffc2fc',
'policy_start_date': '2023-10-08T01:09:19.649112+00:00',
'policy_end_date': '2023-10-13T01:09:19.649133+00:00',
'status': 'CONFIRMED',
'price': 68.71,
'price_formatted': 'US$68.71',
'policy': {
'policy_type': 'travel_medical',
'policy_name': 'PolicyVersion 0',
'policy_version': '1637bc92-0299-4624-8f38-c9b9e15d379e'
},
'duration': '5 00:00:00.000021',
'total_renewed_times': 0
}
]
}
} {
'event': 'BOOKING_CANCELLED',
'payload': {
'id': 'HMZZ8-3YYHZ-INS',
'status': 'CANCELLED',
'currency': 'USD',
'total_price': 0.0,
'total_price_formatted': 'US$0.00',
'partner_transaction_id': null,
'quotes': [
{
'id': 'e0925616-824d-4216-bd18-450fb669c017',
'policy_start_date': '2023-10-08T01:19:41.766661+00:00',
'policy_end_date': '2023-10-13T01:19:41.766719+00:00',
'status': 'CANCELLED',
'price': 68.71,
'price_formatted': 'US$68.71',
'policy': {
'policy_type': 'travel_medical',
'policy_name': 'PolicyVersion 0',
'policy_version': 'dd5aef78-5ce5-4f19-a455-968780b89ea2'
},
'duration': '5 00:00:00.000058',
'total_renewed_times': 0,
'refund_value': 68.71
}
]
}
}{
"event": "RENEWAL_CREATED",
"payload": {
"id": "daSJp-fwdoj-REN",
"package_id": "GKDK9-CECQU-INS",
"quote_id": "c8ddb161-e3d9-455b-9621-96df90f17acb",
"status": "ACTIVE",
"start_date": "2019-02-25T13:00:00Z",
"notification_date": "2018-11-22T00:21:41Z",
"due_date": "2019-02-25T13:00:00Z",
"expiry_date": "2018-11-21T22:56:01Z",
"cancelled_on": null,
"paid_on": "2019-02-25T13:00:00Z",
"created_at": "2018-11-21T04:15:12.175468Z"
}
}{
"event": "RENEWAL_NOTIFICATION",
"payload": {
"id": "daSJp-fwdoj-REN",
"package_id": "GKDK9-CECQU-INS",
"quote_id": "c8ddb161-e3d9-455b-9621-96df90f17acb",
"status": "ACTIVE",
"start_date": "2019-02-25T13:00:00Z",
"notification_date": "2018-11-22T00:21:41Z",
"due_date": "2019-02-25T13:00:00Z",
"expiry_date": "2018-11-21T22:56:01Z",
"cancelled_on": null,
"paid_on": null,
"created_at": "2018-11-21T04:15:12.175468Z"
}
}{
"event": "RENEWAL_DUE",
"payload": {
"id": "daSJp-fwdoj-REN",
"package_id": "GKDK9-CECQU-INS",
"quote_id": "c8ddb161-e3d9-455b-9621-96df90f17acb",
"status": "DUE",
"start_date": "2019-02-25T13:00:00Z",
"notification_date": "2018-11-22T00:21:41Z",
"due_date": "2019-02-25T13:00:00Z",
"expiry_date": "2018-11-21T22:56:01Z",
"cancelled_on": null,
"paid_on": null,
"created_at": "2018-11-21T04:15:12.175468Z"
}
}{
"event": "RENEWAL_DUE",
"payload": {
"id": "daSJp-fwdoj-REN",
"package_id": "GKDK9-CECQU-INS",
"quote_id": "c8ddb161-e3d9-455b-9621-96df90f17acb",
"status": "DUE",
"start_date": "2019-02-25T13:00:00Z",
"notification_date": "2018-11-22T00:21:41Z",
"due_date": "2019-02-25T13:00:00Z",
"expiry_date": "2018-11-21T22:56:01Z",
"cancelled_on": null,
"paid_on": null,
"created_at": "2018-11-21T04:15:12.175468Z"
}
}{
"id": "string",
"status": "string",
"currency": "str",
"total_price": 0,
"total_price_formatted": "string",
"partner_transaction_id": "string",
"created_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"pds_url": "http://example.com",
"security_token": "string",
"quotes": [
{
"id": "string",
"policy_start_date": "2021-01-04T17:10:37Z",
"policy_end_date": "2021-01-04T17:10:37Z",
"status": "string",
"price": 0,
"price_formatted": "string",
"policy": {
"policy_type": "string",
"policy_name": "string",
"policy_code": "string",
"policy_version": "string",
"category": "string",
"content": {
"title": "string",
"header": "string",
"description": "string",
"optout_msg": "string",
"inclusions": [
{
"title": "string",
"description": "string"
}
],
"exclusions": [
{
"title": "string",
"description": "string"
}
],
"disclaimer": "string",
"disclaimer_html": "string",
"payment_disclaimer": "string",
"in_path_disclaimer": "string"
},
"underwriter": {
"disclaimer": "string",
"name": "string"
}
},
"insured": [
{
"id": "string",
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"country": "AF",
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"phone": "string",
"age": 0,
"birth_date": "2021-01-04",
"metadata": {
"property1": "string",
"property2": "string"
},
"company": "string"
}
],
"tax": {
"total_tax": 0,
"total_amount_without_tax": 0,
"total_tax_formatted": "string",
"total_amount_without_tax_formatted": "string",
"taxes": [
{
"tax_amount": 0,
"tax_code": "string",
"tax_amount_formatted": "string"
}
]
},
"duration": "string",
"benefits": [
{
"description": "string",
"limit_description": "string",
"limit": 0,
"limit_policy_currency": 0,
"limit_formatted": "string",
"limit_policy_currency_formatted": "string",
"limit_per_unit": 0,
"limit_per_unit_policy_currency": 0,
"limit_per_unit_formatted": "string",
"limit_per_unit_policy_currency_formatted": "string",
"excess_description": "string",
"excess": 0,
"excess_policy_currency": 0,
"excess_formatted": "string",
"excess_policy_currency_formatted": "string",
"minimum_claim_amount": 0,
"minimum_claim_amount_policy_currency": 0,
"minimum_claim_amount_formatted": "string",
"minimum_claim_amount_policy_currency_formatted": "string"
}
],
"commission": {
"total_commission": 0,
"total_commission_formatted": "string"
},
"created_at": "2021-01-04T17:10:37Z",
"confirmed_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"cancelled_at": "2021-01-04T17:10:37Z",
"is_renewable": true,
"cover_amount": 0,
"cover_amount_formatted": "string",
"pds_url": "http://example.com",
"attachments": "string",
"files": "string",
"extra_fields": {
"property1": "string",
"property2": "string"
},
"next_renewal": {
"id": "string",
"package_id": "string",
"quote_id": "string",
"status": "string",
"start_date": "2021-01-04T17:10:37Z",
"notification_date": "2021-01-04T17:10:37Z",
"due_date": "2021-01-04T17:10:37Z",
"expiry_date": "2021-01-04T17:10:37Z",
"cancelled_on": "2021-01-04T17:10:37Z",
"paid_on": "2021-01-04T17:10:37Z",
"created_at": "2021-01-04T17:10:37Z"
},
"can_be_cancelled": true,
"errors": [
"string"
]
}
],
"coi": {
"pdf": "http://example.com",
"url": "http://example.com"
},
"account_url": "http://example.com",
"policyholder": {
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"phone": "string",
"country": "AF",
"age": 0,
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"secondary_email": "[email protected]",
"birth_date": "2021-01-04",
"company": "string",
"tax_payer_id": "string"
},
"total_tax": 0,
"total_tax_formatted": "string",
"total_premium": 0,
"total_premium_formatted": "string"
}{
"quotes": [
{
"id": "d7780bcc-c47c-446b-a9fb-b41f62fc1e81",
"insured": [
{
"first_name": "User",
"last_name": "Example",
"birth_date": "1991-03-11",
"email": "[email protected]"
}
]
}
],
"policyholder": {
"first_name": "User",
"last_name": "Example",
"birth_date": "1991-03-11",
"email": "[email protected]",
"country": "GB"
}
} "id": "ABCD-12345-INS",
"status": "CONFIRMED",
"currency": "AUD",
"total_price": 100.0,
{
"data": {
"id": "5a0e92d8-bca6-4006-be87-3254af39c865",
"customerId": "30db40c8-6e48-4406-9f06-b097273035b4",
"paymentProviderId": "47d7cc91-294b-40ce-85cf-99653c44bee2",
"createdAt": "2020-09-14T15:56:25+00:00",
"updatedAt": "2021-01-04T02:19:33+00:00",
"metadata": {
"variant": "visa",
"paymentMethod": "Credit card",
"expiryMonth": "3",
"expiryYear": "2030",
"holderName": "Darin Sikanic",
"number": "1111"
},
"partnerId": "9f6cebc9-b24b-4d33-8546-6c9edd12d751",
"isVisible": true,
"isDefault": true
}
}
} "customer": {
"email": "[email protected]"
},
"creditCard": {
"number":"4111111111111111",
"expiryMonth":"03",
"expiryYear":"2030",
"cvc":"737",
"holderName":"Darin Sikanic"
}
}{
"id": "string",
"status": "string",
"currency": "str",
"total_price": 0,
"total_price_formatted": "string",
"partner_transaction_id": "string",
"created_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"pds_url": "http://example.com",
"security_token": "string",
"quotes": [
{
"id": "string",
"policy_start_date": "2021-01-04T17:10:37Z",
"policy_end_date": "2021-01-04T17:10:37Z",
"status": "string",
"price": 0,
"price_formatted": "string",
"policy": {
"policy_type": "string",
"policy_name": "string",
"policy_code": "string",
"policy_version": "string",
"category": "string",
"content": {
"title": "string",
"header": "string",
"description": "string",
"optout_msg": "string",
"inclusions": [
{
"title": "string",
"description": "string"
}
],
"exclusions": [
{
"title": "string",
"description": "string"
}
],
"disclaimer": "string",
"disclaimer_html": "string",
"payment_disclaimer": "string",
"in_path_disclaimer": "string"
},
"underwriter": {
"disclaimer": "string",
"name": "string"
}
},
"insured": [
{
"id": "string",
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"country": "AF",
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"phone": "string",
"age": 0,
"birth_date": "2021-01-04",
"metadata": {
"property1": "string",
"property2": "string"
},
"company": "string"
}
],
"tax": {
"total_tax": 0,
"total_amount_without_tax": 0,
"total_tax_formatted": "string",
"total_amount_without_tax_formatted": "string",
"taxes": [
{
"tax_amount": 0,
"tax_code": "string",
"tax_amount_formatted": "string"
}
]
},
"duration": "string",
"benefits": [
{
"description": "string",
"limit_description": "string",
"limit": 0,
"limit_policy_currency": 0,
"limit_formatted": "string",
"limit_policy_currency_formatted": "string",
"limit_per_unit": 0,
"limit_per_unit_policy_currency": 0,
"limit_per_unit_formatted": "string",
"limit_per_unit_policy_currency_formatted": "string",
"excess_description": "string",
"excess": 0,
"excess_policy_currency": 0,
"excess_formatted": "string",
"excess_policy_currency_formatted": "string",
"minimum_claim_amount": 0,
"minimum_claim_amount_policy_currency": 0,
"minimum_claim_amount_formatted": "string",
"minimum_claim_amount_policy_currency_formatted": "string"
}
],
"commission": {
"total_commission": 0,
"total_commission_formatted": "string"
},
"created_at": "2021-01-04T17:10:37Z",
"confirmed_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"cancelled_at": "2021-01-04T17:10:37Z",
"is_renewable": true,
"cover_amount": 0,
"cover_amount_formatted": "string",
"pds_url": "http://example.com",
"attachments": "string",
"files": "string",
"extra_fields": {
"property1": "string",
"property2": "string"
},
"next_renewal": {
"id": "string",
"package_id": "string",
"quote_id": "string",
"status": "string",
"start_date": "2021-01-04T17:10:37Z",
"notification_date": "2021-01-04T17:10:37Z",
"due_date": "2021-01-04T17:10:37Z",
"expiry_date": "2021-01-04T17:10:37Z",
"cancelled_on": "2021-01-04T17:10:37Z",
"paid_on": "2021-01-04T17:10:37Z",
"created_at": "2021-01-04T17:10:37Z"
},
"can_be_cancelled": true,
"errors": [
"string"
]
}
],
"coi": {
"pdf": "http://example.com",
"url": "http://example.com"
},
"account_url": "http://example.com",
"policyholder": {
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"phone": "string",
"country": "AF",
"age": 0,
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"secondary_email": "[email protected]",
"birth_date": "2021-01-04",
"company": "string",
"tax_payer_id": "string"
},
"total_tax": 0,
"total_tax_formatted": "string",
"total_premium": 0,
"total_premium_formatted": "string"
}{
"quotes": [
{
"id": "d7780bcc-c47c-446b-a9fb-b41f62fc1e81",
"insured": [
{
"first_name": "User",
"last_name": "Example",
"birth_date": "1991-03-11",
"email": "[email protected]"
}
]
}
],
"policyholder": {
"first_name": "User",
"last_name": "Example",
"birth_date": "1991-03-11",
"email": "[email protected]",
"country": "GB"
},
"payment_details": {
"customer_token_id": "{{customer_token_id}}"
}
}
{
"id": "string",
"status": "string",
"currency": "str",
"total_price": 0,
"total_price_formatted": "string",
"partner_transaction_id": "string",
"created_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"pds_url": "http://example.com",
"security_token": "string",
"quotes": [
{
"id": "string",
"policy_start_date": "2021-01-04T17:10:37Z",
"policy_end_date": "2021-01-04T17:10:37Z",
"status": "string",
"price": 0,
"price_formatted": "string",
"policy": {
"policy_type": "string",
"policy_name": "string",
"policy_code": "string",
"policy_version": "string",
"category": "string",
"content": {
"title": "string",
"header": "string",
"description": "string",
"optout_msg": "string",
"inclusions": [
{
"title": "string",
"description": "string"
}
],
"exclusions": [
{
"title": "string",
"description": "string"
}
],
"disclaimer": "string",
"disclaimer_html": "string",
"payment_disclaimer": "string",
"in_path_disclaimer": "string"
},
"underwriter": {
"disclaimer": "string",
"name": "string"
}
},
"insured": [
{
"id": "string",
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"country": "AF",
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"phone": "string",
"age": 0,
"birth_date": "2021-01-04",
"metadata": {
"property1": "string",
"property2": "string"
},
"company": "string"
}
],
"tax": {
"total_tax": 0,
"total_amount_without_tax": 0,
"total_tax_formatted": "string",
"total_amount_without_tax_formatted": "string",
"taxes": [
{
"tax_amount": 0,
"tax_code": "string",
"tax_amount_formatted": "string"
}
]
},
"duration": "string",
"benefits": [
{
"description": "string",
"limit_description": "string",
"limit": 0,
"limit_policy_currency": 0,
"limit_formatted": "string",
"limit_policy_currency_formatted": "string",
"limit_per_unit": 0,
"limit_per_unit_policy_currency": 0,
"limit_per_unit_formatted": "string",
"limit_per_unit_policy_currency_formatted": "string",
"excess_description": "string",
"excess": 0,
"excess_policy_currency": 0,
"excess_formatted": "string",
"excess_policy_currency_formatted": "string",
"minimum_claim_amount": 0,
"minimum_claim_amount_policy_currency": 0,
"minimum_claim_amount_formatted": "string",
"minimum_claim_amount_policy_currency_formatted": "string"
}
],
"commission": {
"total_commission": 0,
"total_commission_formatted": "string"
},
"created_at": "2021-01-04T17:10:37Z",
"confirmed_at": "2021-01-04T17:10:37Z",
"updated_at": "2021-01-04T17:10:37Z",
"cancelled_at": "2021-01-04T17:10:37Z",
"is_renewable": true,
"cover_amount": 0,
"cover_amount_formatted": "string",
"pds_url": "http://example.com",
"attachments": "string",
"files": "string",
"extra_fields": {
"property1": "string",
"property2": "string"
},
"next_renewal": {
"id": "string",
"package_id": "string",
"quote_id": "string",
"status": "string",
"start_date": "2021-01-04T17:10:37Z",
"notification_date": "2021-01-04T17:10:37Z",
"due_date": "2021-01-04T17:10:37Z",
"expiry_date": "2021-01-04T17:10:37Z",
"cancelled_on": "2021-01-04T17:10:37Z",
"paid_on": "2021-01-04T17:10:37Z",
"created_at": "2021-01-04T17:10:37Z"
},
"can_be_cancelled": true,
"errors": [
"string"
]
}
],
"coi": {
"pdf": "http://example.com",
"url": "http://example.com"
},
"account_url": "http://example.com",
"policyholder": {
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"phone": "string",
"country": "AF",
"age": 0,
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"secondary_email": "[email protected]",
"birth_date": "2021-01-04",
"company": "string",
"tax_payer_id": "string"
},
"total_tax": 0,
"total_tax_formatted": "string",
"total_premium": 0,
"total_premium_formatted": "string"
}{
"currency": "USD",
"customer_language": "en",
"request": [
{
"policy_type": "parcel_insurance",
"policy_type_version": "1",
"policy_start_date": "2021-03-07T09:25:00+00:00",
"shipping_cost": 0.0,
"order_total": 0.0,
"shipping_date": "2021-03-07T09:25:00+00:00",
"carrier": "Fedex",
"carrier_service_name": "Fedex",
"declared_value": 4000.0,
"delivery_confirmation_type": "None",
"delivery_confirmation_price": 0,
"partner_price": 30.0,
"sender": {
"first_name": "Homer",
"last_name": "Simpson",
"company_name": "The Simpsons LLC",
"address1": "742 Evergreen Terrace",
"city": "Springfield",
"postcode": "98122",
"region": "WA",
"country": "US",
"email": "[email protected]"
},
"receiver": {
"first_name": "Charles Montgomery",
"last_name": "Burns",
"company_name": "Springfield Nuclear Power Plant",
"address1": "100 Industrial Way",
"city": "Sprinfield",
"postcode": "98122",
"region": "WA",
"country": "US",
"email": "[email protected]"
},
"tracking_reference": "SNDR5152",
"tracking_url": "http://www.tracking-example-url.com/tracking/SNDR5152",
"packages": [
{
"declared_value": 4000.0,
"description": "Test",
"type": "Package",
"width": 2.0,
"height": 2.0,
"length": 2.0,
"weight": 1.0,
"items": [],
"tracking_reference": "SNDR5152",
"tracking_url": "http://www.tracking-example-url.com/tracking/SNDR5152"
}
]
}
],
"policyholder": {
"first_name": "Homer",
"last_name": "Simpson",
"address1": "742 Evergreen Terrace",
"city": "Springfield",
"postcode": "98122",
"region": "WA",
"country": "US",
"email": "[email protected]"
}
}

Cancel a specific policy booking
{
"id": "8WD8Y-LTEKE-INS",
"status": "CONFIRMED",
"currency": "USD",
"total_price": 4.27,
"total_price_formatted": "US$4.27",
"partner_transaction_id": "id-to-stitch-transactions-in-two-systems",
"created_at": "2021-01-15T01:19:49.529799Z",
"updated_at": "2021-01-15T01:19:59.773302Z",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS",
"security_token": "UiRlP-6bLfQ-1YLjR-ste66",
"quotes": [
{
"id": "201eb11b-4494-40e8-97fa-e107c76501bf",
"policy_start_date": "2021-01-17T13:00:00+00:00",
"policy_end_date": "2021-01-19T13:00:00+00:00",
"status": "CONFIRMED",
"price": 4.27,
"price_formatted": "US$4.27",
"policy": {
"policy_type": "event_ticket_protection",
"policy_name": "Missed Event Cover (Generic)",
"policy_code": "MECG0001",
"policy_version": "5d24e2d1-a341-4b8b-9917-82878470a9c3",
"category": "event_ticket_protection",
"content": {
"title": "Missed Event Cover for Justin Bibber",
"header": null,
"description": "90% of attendees add Missed Event Cover for generous protection when things go wrong or your plans change. For only per ticket it covers you - and all ticket holders - if:",
"optout_msg": "",
"disclaimer": "<p>This insurance is arranged by Cover Genius Ltd which is authorised and regulated by the FCA (No.750711). Policies are underwritten by Markel International Insurance Company Limited which is authorised by the PRA and regulated by the FCA, (No.202570).</p>"
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com",
"name": "Cover Genius Pty Ltd"
},
"claim_selector_id": null
},
"insured": [
{
"id": "3aa30165-7a71-45ab-8899-f479fcb6e8e2",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]",
"region": null
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 4.27,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$4.27",
"taxes": []
},
"duration": "2 00:00:00",
"benefits": [
{
"description": "Updated Transalation",
"limit": 7.77,
"limit_policy_currency": 10.0,
"limit_formatted": "US$7.77",
"limit_policy_currency_formatted": "A$10.00",
"excess": 3.88,
"excess_policy_currency": 5.0,
"excess_formatted": "US$3.88",
"excess_policy_currency_formatted": "A$5.00"
},
{
"description": "Updated Transalation",
"limit_description": "Benefit Text Test 01",
"excess": 4.66,
"excess_policy_currency": 6.0,
"excess_formatted": "US$4.66",
"excess_policy_currency_formatted": "A$6.00"
},
{
"description": "Description",
"limit": 11.65,
"limit_policy_currency": 15.0,
"limit_formatted": "US$11.65",
"limit_policy_currency_formatted": "A$15.00"
},
{
"description": "Description",
"limit": 15.54,
"limit_policy_currency": 20.0,
"limit_formatted": "US$15.54",
"limit_policy_currency_formatted": "A$20.00",
"excess_description": "Excess Text Test 01"
},
{
"description": "Description",
"limit_description": "Benefit Text Test 02",
"excess_description": "Excess Text Test 02"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "US$0.00"
},
"created_at": "2021-01-15T01:19:49.523137Z",
"confirmed_at": "2021-01-15T01:19:59.750719Z",
"updated_at": "2021-01-15T01:19:59.763517Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 77.7,
"cover_amount_formatted": "US$77.70",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS?policy_type=event_ticket_protection_v1",
"attachments": [],
"files": [],
"extra_fields": {},
"next_renewal": null,
"can_be_cancelled": true
}
],
"coi": {
"url": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS?security_token=UiRlP-6bLfQ-1YLjR-ste66",
"pdf": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS.pdf?security_token=UiRlP-6bLfQ-1YLjR-ste66"
},
"account_url": "https://staging.xcover.com/en/account?id=0bde2670-c3f9-4e79-a837-063d5d5e3874&signup_token=zl4qR-wNoL5-fHZ4M-u0Lmb",
"policyholder": {
"first_name": "Ben",
"middle_name": null,
"last_name": "H",
"email": "[email protected]",
"phone": null,
"country": "US",
"age": null,
"address1": null,
"address2": null,
"city": null,
"postcode": null,
"region": "NYC",
"secondary_email": null,
"birth_date": null,
"company": null
},
"total_tax": 0.0,
"total_tax_formatted": "US$0.00",
"total_premium": 4.27,
"total_premium_formatted": "US$4.27",
"partner": {
"id": "87ZRF",
"name": "Generic Partner",
"title": "Generic Partner",
"logo": "https://staging.static.xcover.com/media/partnerlogos/2020/08/12/travel_logo.png",
"contact_url": "https://staging.xcover.com/en/about",
"partner_url": "https://staging.xcover.com",
"help_center_url": "https://staging.xcover.com/en/help/your-insurance",
"updated_at": "2020-10-28T07:48:24.671777Z",
"xpay_refund_enabled": false,
"subsidiary": {
"id": "87ZRF",
"name": "Generic Partner",
"title": "Generic Partner",
"logo": "https://staging.static.xcover.com/media/partnerlogos/2020/08/12/travel_logo.png",
"contact_url": "https://staging.xcover.com/en/about",
"partner_url": "https://staging.xcover.com",
"help_center_url": "https://staging.xcover.com/en/help/your-insurance",
"updated_at": "2020-10-28T07:48:24.671777Z",
"xpay_refund_enabled": false
}
},
"customer_language": "en"
}{
"id": "string",
"status": "string",
"quotes": [
{
"id": "string",
"policy_start_date": "2020-09-25T05:31:10Z",
"policy_end_date": "2020-09-25T05:31:10Z",
"policy_cancellation_date": "2020-09-25T05:31:10Z",
"policy_coolingoff_date": "2020-09-25T05:31:10Z",
"status": "string",
"price": 0,
"refund_value": 0,
"adjustment_fee": 0,
"policy": {
"policy_type": "string",
"policy_name": "string",
"policy_code": "string",
"policy_version": "string",
"category": "string",
"content": {
"title": "string",
"header": "string",
"description": "string",
"optout_msg": "string",
"inclusions": [
{
"title": "string",
"description": "string"
}
],
"exclusions": [
{
"title": "string",
"description": "string"
}
],
"disclaimer": "string",
"disclaimer_html": "string"
},
"underwriter": {
"disclaimer": "string",
"name": "string"
}
},
"insured": [
{
"id": "string",
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"country": "AF",
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"phone": "string",
"age": 0,
"birth_date": "2020-09-25",
"metadata": {
"property1": "string",
"property2": "string"
},
"company": "string"
}
],
"created_at": "2020-09-25T05:31:10Z",
"confirmed_at": "2020-09-25T05:31:10Z",
"updated_at": "2020-09-25T05:31:10Z",
"cancelled_at": "2020-09-25T05:31:10Z"
}
],
"policyholder": {
"first_name": "string",
"middle_name": "string",
"last_name": "string",
"email": "[email protected]",
"phone": "string",
"country": "AF",
"age": 0,
"address1": "string",
"address2": "string",
"city": "string",
"postcode": "string",
"region": "string",
"secondary_email": "[email protected]",
"birth_date": "2020-09-25",
"company": "string",
"tax_payer_id": "string"
},
"pds_url": "http://example.com",
"coi": {
"pdf": "http://example.com",
"url": "http://example.com"
},
"created_at": "2020-09-25T05:31:10Z",
"updated_at": "2020-09-25T05:31:10Z",
"total_price": 0,
"total_price_formatted": "string",
"total_refund": 0,
"total_refund_formatted": "string",
"total_tax": 0,
"total_tax_formatted": "string",
"total_premium": 0,
"total_premium_formatted": "string",
"currency": "str",
"cancellation_id": "string",
"confirm_before": "2020-09-25T05:31:10Z",
"partner": {
"id": "string",
"name": "string",
"title": "string",
"logo": "http://example.com",
"contact_url": "http://example.com",
"partner_url": "http://example.com",
"help_center_url": "http://example.com",
"updated_at": "2020-09-25T05:31:10Z",
"xpay_refund_enabled": true,
"subsidiary": {
"id": "string",
"name": "string",
"title": "string",
"logo": "http://example.com",
"contact_url": "http://example.com",
"partner_url": "http://example.com",
"help_center_url": "http://example.com"
}
}
}{
"quotes": [
{
"id": "62fd1f8b-f8fa-420a-82a0-6990976fb8cc",
"reason_for_cancellation": "No longer travelling"
}
]
}{
"id": "8UHPK-ALPQT-INS",
"status": "CANCELLED",
"quotes": [
{
"id": "d5465e90-f22f-477a-b0cc-2950fcf034ff",
"policy_start_date": "2021-01-07T18:18:48Z",
"policy_end_date": "2021-01-17T15:45:00Z",
"policy_cancellation_date": null,
"policy_coolingoff_date": "2021-01-21T18:18:59.940059Z",
"status": "CANCELLED",
"price": 22.4,
"refund_value": 22.4,
"adjustment_fee": 0.0,
"created_at": "2021-01-07T18:18:49.035218Z",
"confirmed_at": "2021-01-07T18:18:59.940059Z",
"updated_at": "2021-01-07T18:19:04.222570Z",
"cancelled_at": null
}
],
"created_at": "2021-01-07T18:18:49.145872Z",
"updated_at": "2021-01-07T18:18:59.958252Z",
"total_price": 0.0,
"total_price_formatted": "€0.00",
"total_refund": 22.4,
"total_refund_formatted": "22.40",
"currency": "EUR",
"cancellation_id": "90o3N-fIexx-Zw2bd-CCL",
"confirm_before": "2021-01-08T18:19:04.228699Z"
}
{
"preview": true,
"quotes": [
{
"id": "62fd1f8b-f8fa-420a-82a0-6990976fb8cc",
"reason_for_cancellation": "No longer travelling"
}
]
}{
"id": "8UHPK-ALPQT-INS",
"status": "CANCELLED",
"quotes": [
{
"id": "d5465e90-f22f-477a-b0cc-2950fcf034ff",
"policy_start_date": "2021-01-07T18:18:48Z",
"policy_end_date": "2021-01-17T15:45:00Z",
"policy_cancellation_date": null,
"policy_coolingoff_date": "2021-01-21T18:18:59.940059Z",
"status": "CANCELLED",
"price": 22.4,
"refund_value": 22.4,
"adjustment_fee": 0.0,
"created_at": "2021-01-07T18:18:49.035218Z",
"confirmed_at": "2021-01-07T18:18:59.940059Z",
"updated_at": "2021-01-07T18:19:04.222570Z",
"cancelled_at": null
}
],
"created_at": "2021-01-07T18:18:49.145872Z",
"updated_at": "2021-01-07T18:18:59.958252Z",
"total_price": 0.0,
"total_price_formatted": "€0.00",
"total_refund": 22.4,
"total_refund_formatted": "22.40",
"currency": "EUR",
"cancellation_id": "90o3N-fIexx-Zw2bd-CCL",
"confirm_before": "2021-01-08T18:19:04.228699Z"
}

Modifying an existing booked policy
{
"id": "8WD8Y-LTEKE-INS",
"status": "CONFIRMED",
"currency": "USD",
"total_price": 4.27,
"total_price_formatted": "US$4.27",
"partner_transaction_id": "id-to-stitch-transactions-in-two-systems",
"created_at": "2021-01-15T01:19:49.529799Z",
"updated_at": "2021-01-15T01:19:59.773302Z",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS",
"security_token": "UiRlP-6bLfQ-1YLjR-ste66",
"quotes": [
{
"id": "201eb11b-4494-40e8-97fa-e107c76501bf",
"policy_start_date": "2021-01-17T13:00:00+00:00",
"policy_end_date": "2021-01-19T13:00:00+00:00",
"status": "CONFIRMED",
"price": 4.27,
"price_formatted": "US$4.27",
"policy": {
"policy_type": "event_ticket_protection",
"policy_name": "Missed Event Cover (Generic)",
"policy_code": "MECG0001",
"policy_version": "5d24e2d1-a341-4b8b-9917-82878470a9c3",
"category": "event_ticket_protection",
"content": {
"title": "Missed Event Cover for Justin Bibber",
"header": null,
"description": "90% of attendees add Missed Event Cover for generous protection when things go wrong or your plans change. For only per ticket it covers you - and all ticket holders - if:",
"optout_msg": "",
"disclaimer": "<p>This insurance is arranged by Cover Genius Ltd which is authorised and regulated by the FCA (No.750711). Policies are underwritten by Markel International Insurance Company Limited which is authorised by the PRA and regulated by the FCA, (No.202570).</p>"
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com",
"name": "Cover Genius Pty Ltd"
},
"claim_selector_id": null
},
"insured": [
{
"id": "3aa30165-7a71-45ab-8899-f479fcb6e8e2",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]",
"region": null
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 4.27,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$4.27",
"taxes": []
},
"duration": "2 00:00:00",
"benefits": [
{
"description": "Updated Transalation",
"limit": 7.77,
"limit_policy_currency": 10.0,
"limit_formatted": "US$7.77",
"limit_policy_currency_formatted": "A$10.00",
"excess": 3.88,
"excess_policy_currency": 5.0,
"excess_formatted": "US$3.88",
"excess_policy_currency_formatted": "A$5.00"
},
{
"description": "Updated Transalation",
"limit_description": "Benefit Text Test 01",
"excess": 4.66,
"excess_policy_currency": 6.0,
"excess_formatted": "US$4.66",
"excess_policy_currency_formatted": "A$6.00"
},
{
"description": "Description",
"limit": 11.65,
"limit_policy_currency": 15.0,
"limit_formatted": "US$11.65",
"limit_policy_currency_formatted": "A$15.00"
},
{
"description": "Description",
"limit": 15.54,
"limit_policy_currency": 20.0,
"limit_formatted": "US$15.54",
"limit_policy_currency_formatted": "A$20.00",
"excess_description": "Excess Text Test 01"
},
{
"description": "Description",
"limit_description": "Benefit Text Test 02",
"excess_description": "Excess Text Test 02"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "US$0.00"
},
"created_at": "2021-01-15T01:19:49.523137Z",
"confirmed_at": "2021-01-15T01:19:59.750719Z",
"updated_at": "2021-01-15T01:19:59.763517Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 77.7,
"cover_amount_formatted": "US$77.70",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS?policy_type=event_ticket_protection_v1",
"attachments": [],
"files": [],
"extra_fields": {},
"next_renewal": null,
"can_be_cancelled": true
}
],
"coi": {
"url": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS?security_token=UiRlP-6bLfQ-1YLjR-ste66",
"pdf": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS.pdf?security_token=UiRlP-6bLfQ-1YLjR-ste66"
},
"account_url": "https://staging.xcover.com/en/account?id=0bde2670-c3f9-4e79-a837-063d5d5e3874&signup_token=zl4qR-wNoL5-fHZ4M-u0Lmb",
"policyholder": {
"first_name": "Ben",
"middle_name": null,
"last_name": "H",
"email": "[email protected]",
"phone": null,
"country": "US",
"age": null,
"address1": null,
"address2": null,
"city": null,
"postcode": null,
"region": "NYC",
"secondary_email": null,
"birth_date": null,
"company": null
},
"total_tax": 0.0,
"total_tax_formatted": "US$0.00",
"total_premium": 4.27,
"total_premium_formatted": "US$4.27",
"partner": {
"id": "87ZRF",
"name": "Generic Partner",
"title": "Generic Partner",
"logo": "https://staging.static.xcover.com/media/partnerlogos/2020/08/12/travel_logo.png",
"contact_url": "https://staging.xcover.com/en/about",
"partner_url": "https://staging.xcover.com",
"help_center_url": "https://staging.xcover.com/en/help/your-insurance",
"updated_at": "2020-10-28T07:48:24.671777Z",
"xpay_refund_enabled": false,
"subsidiary": {
"id": "87ZRF",
"name": "Generic Partner",
"title": "Generic Partner",
"logo": "https://staging.static.xcover.com/media/partnerlogos/2020/08/12/travel_logo.png",
"contact_url": "https://staging.xcover.com/en/about",
"partner_url": "https://staging.xcover.com",
"help_center_url": "https://staging.xcover.com/en/help/your-insurance",
"updated_at": "2020-10-28T07:48:24.671777Z",
"xpay_refund_enabled": false
}
},
"customer_language": "en"
}{
"id": "8WD8Y-LTEKE-INS",
"status": "CONFIRMED",
"currency": "USD",
"total_price": 3.5,
"total_price_formatted": "US$3.50",
"partner_transaction_id": "id-to-stitch-transactions-in-two-systems",
"created_at": "2021-01-15T01:19:49.529799Z",
"updated_at": "2021-01-15T01:30:17.360948Z",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS",
"security_token": "UiRlP-6bLfQ-1YLjR-ste66",
"quotes": [
{
"id": "201eb11b-4494-40e8-97fa-e107c76501bf",
"policy_start_date": "2021-01-17T13:00:00+00:00",
"policy_end_date": "2021-01-19T13:00:00+00:00",
"status": "CONFIRMED",
"price": 3.5,
"price_formatted": "US$3.50",
"policy": {
"policy_type": "event_ticket_protection",
"policy_name": "Missed Event Cover (Generic)",
"policy_code": "MECG0001",
"policy_version": "5d24e2d1-a341-4b8b-9917-82878470a9c3",
"category": "event_ticket_protection",
"content": {
"title": "Missed Event Cover for Justin Bibber",
"header": null,
"description": "90% of attendees add Missed Event Cover for generous protection when things go wrong or your plans change. For only per ticket it covers you - and all ticket holders - if:",
"optout_msg": "",
"disclaimer": "<p>This insurance is arranged by Cover Genius Ltd which is authorised and regulated by the FCA (No.750711). Policies are underwritten by Markel International Insurance Company Limited which is authorised by the PRA and regulated by the FCA, (No.202570).</p>"
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com",
"name": "Cover Genius Pty Ltd"
},
"claim_selector_id": null
},
"insured": [
{
"id": "3aa30165-7a71-45ab-8899-f479fcb6e8e2",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]",
"region": null
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 3.5,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$3.50",
"taxes": []
},
"duration": "2 00:00:00",
"benefits": [
{
"description": "Updated Transalation",
"limit": 7.77,
"limit_policy_currency": 10.0,
"limit_formatted": "US$7.77",
"limit_policy_currency_formatted": "A$10.00",
"excess": 3.88,
"excess_policy_currency": 5.0,
"excess_formatted": "US$3.88",
"excess_policy_currency_formatted": "A$5.00"
},
{
"description": "Updated Transalation",
"limit_description": "Benefit Text Test 01",
"excess": 4.66,
"excess_policy_currency": 6.0,
"excess_formatted": "US$4.66",
"excess_policy_currency_formatted": "A$6.00"
},
{
"description": "Description",
"limit": 11.65,
"limit_policy_currency": 15.0,
"limit_formatted": "US$11.65",
"limit_policy_currency_formatted": "A$15.00"
},
{
"description": "Description",
"limit": 15.54,
"limit_policy_currency": 20.0,
"limit_formatted": "US$15.54",
"limit_policy_currency_formatted": "A$20.00",
"excess_description": "Excess Text Test 01"
},
{
"description": "Description",
"limit_description": "Benefit Text Test 02",
"excess_description": "Excess Text Test 02"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "US$0.00"
},
"created_at": "2021-01-15T01:19:49.523137Z",
"confirmed_at": "2021-01-15T01:19:59.750719Z",
"updated_at": "2021-01-15T01:30:17.355406Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 38.85,
"cover_amount_formatted": "US$38.85",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS?policy_type=event_ticket_protection_v1",
"attachments": [],
"files": [],
"extra_fields": {},
"next_renewal": null,
"can_be_cancelled": true,
"price_diff": -0.77,
"price_diff_formatted": "-US$0.77"
}
],
"coi": {
"url": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS?security_token=UiRlP-6bLfQ-1YLjR-ste66",
"pdf": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS.pdf?security_token=UiRlP-6bLfQ-1YLjR-ste66"
},
"account_url": "https://staging.xcover.com/en/account?id=0bde2670-c3f9-4e79-a837-063d5d5e3874&signup_token=zl4qR-wNoL5-fHZ4M-u0Lmb",
"policyholder": {
"first_name": "Ben",
"middle_name": null,
"last_name": "H",
"email": "[email protected]",
"phone": null,
"country": "US",
"age": null,
"address1": null,
"address2": null,
"city": null,
"postcode": null,
"region": "NYC",
"secondary_email": null,
"birth_date": null,
"company": null
},
"total_tax": 0.0,
"total_tax_formatted": "US$0.00",
"total_premium": 3.5,
"total_premium_formatted": "US$3.50",
"total_price_diff": -0.77,
"total_price_diff_formatted": "-US$0.77",
"update_id": "qh89u-AIB2k-34CC8-UPD"
}{
"quotes": [
{
"id": "{{quote_1_id}}",
"update_fields": {
"insured": [
{
"id": "{{insured_uuid}}",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]"
}
]
}
}
]
}{
"id": "8WD8Y-LTEKE-INS",
"status": "CONFIRMED",
"currency": "USD",
"total_price": 3.5,
"total_price_formatted": "US$3.50",
"partner_transaction_id": "id-to-stitch-transactions-in-two-systems",
"created_at": "2021-01-15T01:19:49.529799Z",
"updated_at": "2021-01-15T01:30:17.360948Z",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS",
"security_token": "UiRlP-6bLfQ-1YLjR-ste66",
"quotes": [
{
"id": "201eb11b-4494-40e8-97fa-e107c76501bf",
"policy_start_date": "2021-01-17T13:00:00+00:00",
"policy_end_date": "2021-01-19T13:00:00+00:00",
"status": "CONFIRMED",
"price": 3.5,
"price_formatted": "US$3.50",
"policy": {
"policy_type": "event_ticket_protection",
"policy_name": "Missed Event Cover (Generic)",
"policy_code": "MECG0001",
"policy_version": "5d24e2d1-a341-4b8b-9917-82878470a9c3",
"category": "event_ticket_protection",
"content": {
"title": "Missed Event Cover for Justin Bibber",
"header": null,
"description": "90% of attendees add Missed Event Cover for generous protection when things go wrong or your plans change. For only per ticket it covers you - and all ticket holders - if:",
"optout_msg": "",
"disclaimer": "<p>This insurance is arranged by Cover Genius Ltd which is authorised and regulated by the FCA (No.750711). Policies are underwritten by Markel International Insurance Company Limited which is authorised by the PRA and regulated by the FCA, (No.202570).</p>"
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com",
"name": "Cover Genius Pty Ltd"
},
"claim_selector_id": null
},
"insured": [
{
"id": "3aa30165-7a71-45ab-8899-f479fcb6e8e2",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]",
"region": null
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 3.5,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$3.50",
"taxes": []
},
"duration": "2 00:00:00",
"benefits": [
{
"description": "Updated Transalation",
"limit": 7.77,
"limit_policy_currency": 10.0,
"limit_formatted": "US$7.77",
"limit_policy_currency_formatted": "A$10.00",
"excess": 3.88,
"excess_policy_currency": 5.0,
"excess_formatted": "US$3.88",
"excess_policy_currency_formatted": "A$5.00"
},
{
"description": "Updated Transalation",
"limit_description": "Benefit Text Test 01",
"excess": 4.66,
"excess_policy_currency": 6.0,
"excess_formatted": "US$4.66",
"excess_policy_currency_formatted": "A$6.00"
},
{
"description": "Description",
"limit": 11.65,
"limit_policy_currency": 15.0,
"limit_formatted": "US$11.65",
"limit_policy_currency_formatted": "A$15.00"
},
{
"description": "Description",
"limit": 15.54,
"limit_policy_currency": 20.0,
"limit_formatted": "US$15.54",
"limit_policy_currency_formatted": "A$20.00",
"excess_description": "Excess Text Test 01"
},
{
"description": "Description",
"limit_description": "Benefit Text Test 02",
"excess_description": "Excess Text Test 02"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "US$0.00"
},
"created_at": "2021-01-15T01:19:49.523137Z",
"confirmed_at": "2021-01-15T01:19:59.750719Z",
"updated_at": "2021-01-15T01:30:17.355406Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 38.85,
"cover_amount_formatted": "US$38.85",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS?policy_type=event_ticket_protection_v1",
"attachments": [],
"files": [],
"extra_fields": {},
"next_renewal": null,
"can_be_cancelled": true,
"price_diff": -0.77,
"price_diff_formatted": "-US$0.77"
}
],
"coi": {
"url": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS?security_token=UiRlP-6bLfQ-1YLjR-ste66",
"pdf": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS.pdf?security_token=UiRlP-6bLfQ-1YLjR-ste66"
},
"account_url": "https://staging.xcover.com/en/account?id=0bde2670-c3f9-4e79-a837-063d5d5e3874&signup_token=zl4qR-wNoL5-fHZ4M-u0Lmb",
"policyholder": {
"first_name": "Ben",
"middle_name": null,
"last_name": "H",
"email": "[email protected]",
"phone": null,
"country": "US",
"age": null,
"address1": null,
"address2": null,
"city": null,
"postcode": null,
"region": "NYC",
"secondary_email": null,
"birth_date": null,
"company": null
},
"total_tax": 0.0,
"total_tax_formatted": "US$0.00",
"total_premium": 3.5,
"total_premium_formatted": "US$3.50",
"total_price_diff": -0.77,
"total_price_diff_formatted": "-US$0.77",
"update_id": "qh89u-AIB2k-34CC8-UPD"
}{
"quotes": [
{
"id": "{{quote_1_id}}",
"update_fields": {
"tickets": [
{"price": 25},
{"price": 25}
]
}
}
]
}{
"id": "8WD8Y-LTEKE-INS",
"status": "CONFIRMED",
"currency": "USD",
"total_price": 3.5,
"total_price_formatted": "US$3.50",
"partner_transaction_id": "id-to-stitch-transactions-in-two-systems",
"created_at": "2021-01-15T01:19:49.529799Z",
"updated_at": "2021-01-15T01:43:18.466465Z",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS",
"security_token": "UiRlP-6bLfQ-1YLjR-ste66",
"quotes": [
{
"id": "201eb11b-4494-40e8-97fa-e107c76501bf",
"policy_start_date": "2021-01-17T13:00:00+00:00",
"policy_end_date": "2021-01-19T13:00:00+00:00",
"status": "CONFIRMED",
"price": 3.5,
"price_formatted": "US$3.50",
"policy": {
"policy_type": "event_ticket_protection",
"policy_name": "Missed Event Cover (Generic)",
"policy_code": "MECG0001",
"policy_version": "5d24e2d1-a341-4b8b-9917-82878470a9c3",
"category": "event_ticket_protection",
"content": {
"title": "Missed Event Cover for Justin Bibber",
"header": null,
"description": "90% of attendees add Missed Event Cover for generous protection when things go wrong or your plans change. For only per ticket it covers you - and all ticket holders - if:",
"optout_msg": "",
"disclaimer": "<p>This insurance is arranged by Cover Genius Ltd which is authorised and regulated by the FCA (No.750711). Policies are underwritten by Markel International Insurance Company Limited which is authorised by the PRA and regulated by the FCA, (No.202570).</p>"
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover.com",
"name": "Cover Genius Pty Ltd"
},
"claim_selector_id": null
},
"insured": [
{
"id": "3aa30165-7a71-45ab-8899-f479fcb6e8e2",
"first_name": "Darin",
"last_name": "Sikanic",
"email": "[email protected]",
"region": null
}
],
"tax": {
"total_tax": 0.0,
"total_amount_without_tax": 3.5,
"total_tax_formatted": "US$0.00",
"total_amount_without_tax_formatted": "US$3.50",
"taxes": []
},
"duration": "2 00:00:00",
"benefits": [
{
"description": "Updated Transalation",
"limit": 7.77,
"limit_policy_currency": 10.0,
"limit_formatted": "US$7.77",
"limit_policy_currency_formatted": "A$10.00",
"excess": 3.88,
"excess_policy_currency": 5.0,
"excess_formatted": "US$3.88",
"excess_policy_currency_formatted": "A$5.00"
},
{
"description": "Updated Transalation",
"limit_description": "Benefit Text Test 01",
"excess": 4.66,
"excess_policy_currency": 6.0,
"excess_formatted": "US$4.66",
"excess_policy_currency_formatted": "A$6.00"
},
{
"description": "Description",
"limit": 11.65,
"limit_policy_currency": 15.0,
"limit_formatted": "US$11.65",
"limit_policy_currency_formatted": "A$15.00"
},
{
"description": "Description",
"limit": 15.54,
"limit_policy_currency": 20.0,
"limit_formatted": "US$15.54",
"limit_policy_currency_formatted": "A$20.00",
"excess_description": "Excess Text Test 01"
},
{
"description": "Description",
"limit_description": "Benefit Text Test 02",
"excess_description": "Excess Text Test 02"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "US$0.00"
},
"created_at": "2021-01-15T01:19:49.523137Z",
"confirmed_at": "2021-01-15T01:19:59.750719Z",
"updated_at": "2021-01-15T01:43:18.462228Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 38.85,
"cover_amount_formatted": "US$38.85",
"pds_url": "https://staging.xcover.com/en/pds/8WD8Y-LTEKE-INS?policy_type=event_ticket_protection_v1",
"attachments": [],
"files": [],
"extra_fields": {},
"next_renewal": null,
"can_be_cancelled": true,
"price_diff": -0.77,
"price_diff_formatted": "-US$0.77"
}
],
"coi": {
"url": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS?security_token=UiRlP-6bLfQ-1YLjR-ste66",
"pdf": "https://staging.xcover.com/en/coi/8WD8Y-LTEKE-INS.pdf?security_token=UiRlP-6bLfQ-1YLjR-ste66"
},
"account_url": "https://staging.xcover.com/en/account?id=0bde2670-c3f9-4e79-a837-063d5d5e3874&signup_token=zl4qR-wNoL5-fHZ4M-u0Lmb",
"policyholder": {
"first_name": "Ben",
"middle_name": null,
"last_name": "H",
"email": "[email protected]",
"phone": null,
"country": "US",
"age": null,
"address1": null,
"address2": null,
"city": null,
"postcode": null,
"region": "NYC",
"secondary_email": null,
"birth_date": null,
"company": null
},
"total_tax": 0.0,
"total_tax_formatted": "US$0.00",
"total_premium": 3.5,
"total_premium_formatted": "US$3.50",
"total_price_diff": -0.77,
"total_price_diff_formatted": "-US$0.77"
}
Sending a Quote Request
{
"id": "TLCC8-B6YWP-INS",
"status": "RECEIVED",
"currency": "AUD",
"total_price": 360.71,
"total_price_formatted": "A$ 360.71",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"created_at": "2020-02-06T00:12:31.013656Z",
"updated_at": "2020-02-06T00:12:31.013670Z",
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS",
"quotes": {
"0": {
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 124.85,
"price_formatted": "A$ 124.85",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance",
"content": {
"title": "Full Product Cover For Life",
"header": "Full Product Cover For Life",
"description": "Theft, damage and expanded warranty that covers the product for life. Cancel anytime.",
"optout_msg": "<p>.</p>",
"inclusions": [
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Full replacement if the item can’t be repaired."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Cancel anytime."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers theft."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers repairs when your item is damaged."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers what the manufacturer's warranty doesn’t."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Extends warranty protection for the life of the policy."
}
],
"disclaimer": "<p>I am over 18 and agree to the terms of this policy. This cover is powered by XCover.com and underwritten by Pacific International Insurance Pty Ltd.</p>"
},
"underwriter": {
"disclaimer": "This cover is powered by XCover and underwritten by Pacific International Insurance Pty. Ltd.",
"name": "Pacific International Insurance Pty. Ltd."
}
},
"insured": null,
"tax": {
"total_tax": 21.67,
"total_amount_without_tax": 103.18,
"total_tax_formatted": "A$ 21.67",
"total_amount_without_tax_formatted": "A$ 103.18",
"taxes": [
{
"tax_amount": 11.35,
"tax_code": "SD",
"tax_amount_formatted": "A$ 11.35"
},
{
"tax_amount": 10.32,
"tax_code": "GST",
"tax_amount_formatted": "A$ 10.32"
},
{
"tax_amount": 0.0,
"tax_code": "ESL",
"tax_amount_formatted": "A$ 0.00"
}
]
},
"duration": "366 00:00:00",
"benefits": [
{
"description": "Damage or Theft",
"limit": 1349.76,
"limit_policy_currency": 1349.76,
"limit_formatted": "A$ 1349.76",
"limit_policy_currency_formatted": "A$ 1349.76",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
},
{
"description": "Extended Warranty",
"limit": 1349.76,
"limit_policy_currency": 1349.76,
"limit_formatted": "A$ 1349.76",
"limit_policy_currency_formatted": "A$ 1349.76",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "A$ 0.00"
},
"created_at": "2020-02-06T00:12:30.974396Z",
"confirmed_at": null,
"updated_at": "2020-02-06T00:12:30.974411Z",
"cancelled_at": null,
"is_renewable": true,
"cover_amount": 1349.0,
"cover_amount_formatted": "A$ 1349.00",
"pending_renewal": null,
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS?policy_type=product_insurance_v1",
"discount_price": 124.85,
"discount_price_formatted": "A$ 124.85",
"discount_amount": 0.0,
"discount_amount_formatted": "A$ 0.00"
}
},
"bundle_code": null,
"bundle_price": 360.71,
"bundle_content": {},
"bundle_price_formatted": "A$ 360.71",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "A$ 0.00"
}
{
"currency": "AUD",
"customer_country": "AU",
"customer_language": "en",
"partner_transaction_id": "1ef4472a-a50e-4c52-87e1-73b9ca988031",
"request": [
{
"policy_type": "product_insurance",
"policy_type_version": "2",
"policy_start_date": "2021-01-14T18:30:00+00:00",
"retail_value": 3799,
"category": "Laptop",
"title": "Apple MacBook Pro",
"brand": "Apple",
"model": "MacBook Pro",
"description": "Apple Macbook Pro 16\" 2019 2.6 GHz w/ Touch Bar 512GB - Space Grey - Au Stock",
"sku": "190199368477",
"condition": "new"
}
]
}{
"id": "TLCC8-B6YWP-INS",
"status": "RECEIVED",
"currency": "AUD",
"total_price": 360.71,
"total_price_formatted": "A$ 360.71",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"created_at": "2020-02-06T00:12:31.013656Z",
"updated_at": "2020-02-06T00:12:31.013670Z",
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS",
"quotes": {
"0": {
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 124.85,
"price_formatted": "A$ 124.85",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance",
"content": {
"title": "Full Product Cover For Life",
"header": "Full Product Cover For Life",
"description": "Theft, damage and expanded warranty that covers the product for life. Cancel anytime.",
"optout_msg": "<p>.</p>",
"inclusions": [
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Full replacement if the item can’t be repaired."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Cancel anytime."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers theft."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers repairs when your item is damaged."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Covers what the manufacturer's warranty doesn’t."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 124.85/year. Cancel anytime.",
"description": "Extends warranty protection for the life of the policy."
}
],
"disclaimer": "<p>I am over 18 and agree to the terms of this policy. This cover is powered by XCover.com and underwritten by Pacific International Insurance Pty Ltd.</p>"
},
"underwriter": {
"disclaimer": "This cover is powered by XCover and underwritten by Pacific International Insurance Pty. Ltd.",
"name": "Pacific International Insurance Pty. Ltd."
}
},
"insured": null,
"tax": {
"total_tax": 21.67,
"total_amount_without_tax": 103.18,
"total_tax_formatted": "A$ 21.67",
"total_amount_without_tax_formatted": "A$ 103.18",
"taxes": [
{
"tax_amount": 11.35,
"tax_code": "SD",
"tax_amount_formatted": "A$ 11.35"
},
{
"tax_amount": 10.32,
"tax_code": "GST",
"tax_amount_formatted": "A$ 10.32"
},
{
"tax_amount": 0.0,
"tax_code": "ESL",
"tax_amount_formatted": "A$ 0.00"
}
]
},
"duration": "366 00:00:00",
"benefits": [
{
"description": "Damage or Theft",
"limit": 1349.76,
"limit_policy_currency": 1349.76,
"limit_formatted": "A$ 1349.76",
"limit_policy_currency_formatted": "A$ 1349.76",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
},
{
"description": "Extended Warranty",
"limit": 1349.76,
"limit_policy_currency": 1349.76,
"limit_formatted": "A$ 1349.76",
"limit_policy_currency_formatted": "A$ 1349.76",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "A$ 0.00"
},
"created_at": "2020-02-06T00:12:30.974396Z",
"confirmed_at": null,
"updated_at": "2020-02-06T00:12:30.974411Z",
"cancelled_at": null,
"is_renewable": true,
"cover_amount": 1349.0,
"cover_amount_formatted": "A$ 1349.00",
"pending_renewal": null,
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS?policy_type=product_insurance_v1",
"discount_price": 124.85,
"discount_price_formatted": "A$ 124.85",
"discount_amount": 0.0,
"discount_amount_formatted": "A$ 0.00"
},
"1": {
"id": "063f9987-efae-4f29-8f85-9e6efa4299c1",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 235.86,
"price_formatted": "A$ 235.86",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance",
"content": {
"title": "Full Product Cover For Life",
"header": "Full Product Cover For Life",
"description": "Theft, damage and expanded warranty that covers the product for life. Cancel anytime.",
"optout_msg": "<p>.</p>",
"inclusions": [
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Full replacement if the item can’t be repaired."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Cancel anytime."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Covers theft."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Covers repairs when your item is damaged."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Covers what the manufacturer's warranty doesn’t."
},
{
"title": "Get peace of mind with theft, damage and expanded warranty that covers the life of your product for only A$ 235.86/year. Cancel anytime.",
"description": "Extends warranty protection for the life of the policy."
}
],
"disclaimer": "<p>I am over 18 and agree to the terms of this policy. This cover is powered by XCover.com and underwritten by Pacific International Insurance Pty Ltd.</p>"
},
"underwriter": {
"disclaimer": "This cover is powered by XCover and underwritten by Pacific International Insurance Pty. Ltd.",
"name": "Pacific International Insurance Pty. Ltd."
}
},
"insured": null,
"tax": {
"total_tax": 40.93,
"total_amount_without_tax": 194.93,
"total_tax_formatted": "A$ 40.93",
"total_amount_without_tax_formatted": "A$ 194.93",
"taxes": [
{
"tax_amount": 21.44,
"tax_code": "SD",
"tax_amount_formatted": "A$ 21.44"
},
{
"tax_amount": 19.49,
"tax_code": "GST",
"tax_amount_formatted": "A$ 19.49"
},
{
"tax_amount": 0.0,
"tax_code": "ESL",
"tax_amount_formatted": "A$ 0.00"
}
]
},
"duration": "366 00:00:00",
"benefits": [
{
"description": "Damage or Theft",
"limit": 2549.87,
"limit_policy_currency": 2549.87,
"limit_formatted": "A$ 2549.87",
"limit_policy_currency_formatted": "A$ 2549.87",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
},
{
"description": "Extended Warranty",
"limit": 2549.87,
"limit_policy_currency": 2549.87,
"limit_formatted": "A$ 2549.87",
"limit_policy_currency_formatted": "A$ 2549.87",
"excess": 150.0,
"excess_policy_currency": 150.0,
"excess_formatted": "A$ 150.00",
"excess_policy_currency_formatted": "A$ 150.00"
}
],
"commission": {
"total_commission": 0.0,
"total_commission_formatted": "A$ 0.00"
},
"created_at": "2020-02-06T00:12:31.008203Z",
"confirmed_at": null,
"updated_at": "2020-02-06T00:12:31.008217Z",
"cancelled_at": null,
"is_renewable": true,
"cover_amount": 2549.0,
"cover_amount_formatted": "A$ 2549.00",
"pending_renewal": null,
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS?policy_type=product_insurance_v1",
"discount_price": 235.86,
"discount_price_formatted": "A$ 235.86",
"discount_amount": 0.0,
"discount_amount_formatted": "A$ 0.00"
}
},
"bundle_code": null,
"bundle_price": 360.71,
"bundle_content": {},
"bundle_price_formatted": "A$ 360.71",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "A$ 0.00"
}{
"currency": "AUD",
"customer_country": "AU",
"customer_language": "en",
"partner_transaction_id": "1ef4472a-a50e-4c52-87e1-73b9ca988031",
"request": [
{
"policy_type": "product_insurance",
"policy_type_version": "2",
"policy_start_date": "2021-01-14T18:30:00+00:00",
"retail_value": 3799,
"category": "Laptop",
"title": "Apple MacBook Pro",
"brand": "Apple",
"model": "MacBook Pro",
"description": "Apple Macbook Pro 16\" 2019 2.6 GHz w/ Touch Bar 512GB - Space Grey - Au Stock",
"sku": "190199368477",
"condition": "new"
},
{
"policy_type": "product_insurance",
"policy_type_version": "2",
"policy_start_date": "2021-01-14T18:30:00+00:00",
"retail_value": 3799,
"category": "Mobile",
"title": "Apple iPhone 12 Pro Max",
"brand": "Apple",
"model": "iPhone 12 Pro Max",
"sku": "190199368478",
"condition": "new"
}
]
} {
"id": "MPM49-EKX9D-INS",
"status": "RECEIVED",
"currency": "GBP",
"total_price": 244.82,
"total_price_formatted": "£244.82",
"partner_transaction_id": "3ab19ca8-1b81-469f-ace5-33d3ccf29c83",
"created_at": "2021-01-05T08:34:09.323201Z",
"updated_at": "2021-01-05T08:34:09.323215Z",
"pds_url": "https://www.xcover.com/en/pds/MPM49-EKX9D-INS",
"security_token": "HthL6-gpJ5M-nu7sT-x7VkK",
"quotes": {
"0": {
"id": "02ed6b9f-4a9a-4d48-a7e9-128cba071cec",
"policy_start_date": "2021-01-14T18:30:00+00:00",
"policy_end_date": "2022-01-13T18:30:00+00:00",
"status": "RECEIVED",
"price": 244.82,
"price_formatted": "£244.82",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection OnBuy",
"policy_code": "ONB01EL",
"policy_version": "7a51eb83-dcc6-4639-bf97-ae1cde554416",
"category": "electronics-insurance",
"content": {
"title": "Full Product Protection",
"in_path_disclaimer": "You confirm you are over 18 and have read and agree to the <a href=\"https://www.xcover.com/en/pds/MPM49-EKX9D-INS?policy_type=product_insurance_v3\" target=\"_blank\">Policy Terms</a> & <a href=\"https://static.xcover.com/media/pds/7a51eb83-dcc6-4639-bf97-ae1cde554416/OnBuy_IPID_OkVuyYh.pdf\" target=\"_blank\">IPID</a>. The policy is provided by XCover.com (trading name of Cover Genius Ltd) and underwritten by Fortegra Europe Insurance Company Limited. Onbuy.com (Visor Commerce Ltd) is an Appointed Representative of Cover Genius Ltd who is authorised and regulated by the Financial Conduct Authority (FCA) reference 750711. This can be checked on the financial services register held on the FCA’s website (www.fca.org.uk). Fortegra Europe Insurance Company Limited is authorised and regulated by the MFSA."
},
"underwriter": {
"disclaimer": "This plan is arranged by XCover and underwritten by Fortegra Europe Insurance Company Limited.",
"name": "Fortegra Europe Insurance Company Limited"
}
},
"insured": null,
"tax": {
"total_tax": 26.23,
"total_amount_without_tax": 218.59,
"total_tax_formatted": "£26.23",
"total_amount_without_tax_formatted": "£218.59",
"taxes": [
{
"tax_amount": 26.23,
"tax_code": "IPT",
"tax_amount_formatted": "£26.23"
}
]
},
"duration": "364 00:00:00",
"benefits": [
{
"description": "Accidental Damage",
"limit": 1623.51,
"limit_policy_currency": 1623.51,
"limit_formatted": "£1623.51",
"limit_policy_currency_formatted": "£1623.51",
"limit_per_unit": 541.17,
"limit_per_unit_policy_currency": 541.17,
"limit_per_unit_formatted": "£541.17 per item",
"limit_per_unit_policy_currency_formatted": "£541.17 per item",
"excess": 81.18,
"excess_policy_currency": 81.1755,
"excess_formatted": "£81.18",
"excess_policy_currency_formatted": "£81.18"
},
{
"description": "Theft",
"limit": 1623.51,
"limit_policy_currency": 1623.51,
"limit_formatted": "£1623.51",
"limit_policy_currency_formatted": "£1623.51",
"limit_per_unit": 541.17,
"limit_per_unit_policy_currency": 541.17,
"limit_per_unit_formatted": "£541.17 per item",
"limit_per_unit_policy_currency_formatted": "£541.17 per item",
"excess": 81.18,
"excess_policy_currency": 81.1755,
"excess_formatted": "£81.18",
"excess_policy_currency_formatted": "£81.18"
},
{
"description": "Mechanical Breakdown (when the manufacturer's warranty expires)",
"limit": 1623.51,
"limit_policy_currency": 1623.51,
"limit_formatted": "£1623.51",
"limit_policy_currency_formatted": "£1623.51",
"limit_per_unit": 541.17,
"limit_per_unit_policy_currency": 541.17,
"limit_per_unit_formatted": "£541.17 per item",
"limit_per_unit_policy_currency_formatted": "£541.17 per item",
"excess": 81.18,
"excess_policy_currency": 81.1755,
"excess_formatted": "£81.18",
"excess_policy_currency_formatted": "£81.18"
}
],
"commission": {
"total_commission": 45.0,
"total_commission_formatted": "£45.00"
},
"created_at": "2021-01-05T08:34:09.316598Z",
"confirmed_at": null,
"updated_at": "2021-01-05T08:34:09.316612Z",
"cancelled_at": null,
"is_renewable": false,
"cover_amount": 541.0,
"cover_amount_formatted": "£541.00 per item",
"pds_url": "https://www.xcover.com/en/pds/MPM49-EKX9D-INS?policy_type=product_insurance_v3",
"discount_price": 244.82,
"discount_price_formatted": "£244.82",
"discount_amount": 0.0,
"discount_amount_formatted": "£0.00"
}
},
"bundle_code": null,
"bundle_price": 244.82,
"bundle_content": {},
"bundle_price_formatted": "£244.82",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "£0.00"
}{
"id": "TLCC8-B6YWP-INS",
"status": "RECEIVED",
"currency": "USD",
"total_price": 360.71,
"total_price_formatted": "US$ 360.71",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"created_at": "2020-02-06T00:12:31.013656Z",
"updated_at": "2020-02-06T00:12:31.013670Z",
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS",
"quotes": {
"0": {
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 124.85,
"price_formatted": "US$ 124.85",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance"
},
"insured": [
{
"first_name": "Bart",
"last_name": "Simpson",
"email": "[email protected]"
}
]
}
},
"bundle_code": null,
"bundle_price": 360.71,
"bundle_content": {},
"bundle_price_formatted": "US$ 360.71",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "US$ 0.00"
}{
"currency": "USD",
"request": [
{
"quote_id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"insured": [
{
"first_name": "Bart",
"last_name": "Simpson",
"email": "[email protected]"
}
]
}
]
}{
"id": "TLCC8-B6YWP-INS",
"status": "RECEIVED",
"currency": "USD",
"total_price": 360.71,
"total_price_formatted": "US$ 360.71",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"created_at": "2020-02-06T00:12:31.013656Z",
"updated_at": "2020-02-06T00:12:31.013670Z",
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS",
"quotes": {
"0": {
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 124.85,
"price_formatted": "US$ 124.85",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance"
},
"insured": [
{
"first_name": "Bart",
"last_name": "Simpson",
"email": "[email protected]"
}
]
}
},
"bundle_code": null,
"bundle_price": 360.71,
"bundle_content": {},
"bundle_price_formatted": "US$ 360.71",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "US$ 0.00"
}{
"currency": "USD",
"request": [
{
"policy_type": "product_insurance",
"policy_type_version": "2",
"policy_start_date": "2021-01-14T18:30:00+00:00",
"retail_value": 450,
"category": "Mobile",
"title": "Samsung S8",
"brand": "Samsung",
"model": "S8",
"sku": "1231231",
"condition": "new"
}
]
}{
"id": "TLCC8-B6YWP-INS",
"status": "RECEIVED",
"currency": "USD",
"total_price": 360.71,
"total_price_formatted": "US$ 360.71",
"partner_transaction_id": "ABCD-EFGG-0000-0000",
"created_at": "2020-02-06T00:12:31.013656Z",
"updated_at": "2020-02-06T00:12:31.013670Z",
"pds_url": "https://staging.xcover.com/en/pds/TLCC8-B6YWP-INS",
"quotes": {
"0": {
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86",
"policy_start_date": "2020-02-06T13:00:00+00:00",
"policy_end_date": "2021-02-06T13:00:00+00:00",
"status": "RECEIVED",
"price": 124.85,
"price_formatted": "US$ 124.85",
"policy": {
"policy_type": "product_insurance",
"policy_name": "Full Product Protection",
"policy_code": "PFPO05CG",
"policy_version": "7720b62b-3e84-446a-89d3-48c83cb39384",
"category": "electronics-insurance"
},
"insured": [
{
"first_name": "Bart",
"last_name": "Simpson",
"email": "[email protected]"
}
]
}
},
"bundle_code": null,
"bundle_price": 360.71,
"bundle_content": {},
"bundle_price_formatted": "US$ 360.71",
"bundle_discount_percent": 0.0,
"bundle_discount_amount": 0.0,
"bundle_discount_amount_formatted": "US$ 0.00"
}{
"quotes": [
{
"id": "ca5c9839-17b3-4810-b0b1-d5b693ecef86"
}
]
}