Quote & Save V2
Generate multiple quotes (V2)
Generates price quotes for multiple products using the V2 API endpoint.
post/v2/quote/multi
Headers
Authorizationstring
Bearer token
Request body
Example request
{
"advisorId": "123456",
"departureDate": "2023-05-18",
"returnDate": "2023-05-30",
"coverageOptions": {
"cfarOption": {
"initialDepositDate": "2023-05-18"
},
"cfwrOption": {
"initialDepositDate": "2023-05-18"
},
"carRentalOption": {
"carDatesDto": [
{
"startDate": "2023-05-18",
"endDate": "2023-05-19",
"noOfCars": 1
}
],
"noOfCars": 2
}
},
"timezone": "America/New_York",
"destination": [
{
"country": "FR",
"areaLevel1": "CA",
"locality": "Paris",
"label": "Paris, France"
}
],
"residence": "CA",
"residency": {
"country": "FR",
"areaLevel1": "CA",
"locality": "Paris",
"label": "Paris, France",
"streetAndNumber": "123 Main St",
"city": "San Francisco",
"apartment": "Apt 4B",
"zipCode": "94102"
},
"travellers": [
{
"dateOfBirth": "1985-05-15",
"firstName": "John",
"email": "john.doe@example.com",
"lastName": "Doe",
"mainTraveller": true
}
],
"utms": [
{
"key": "utm_source",
"value": "google"
}
],
"noTravellers": 2
}Response
The quotes have been successfully generated.
Example response
{
"quotes": [
{
"quote": {
"currentPrice": 100.24,
"coverageOptions": {
"petOption": {
"price": 100.24
},
"trcOption": {
"price": 100.24
},
"cfarOption": {
"price": 100.24
},
"cfwrOption": {
"price": 100.24
},
"adventureOption": {
"price": 100.24
},
"vacationRentalOption": {
"price": 100.24
},
"carRentalOption": {
"price": 100.24,
"pricePerCarPerDay": 100.24
},
"medicalUpgrade": {
"price": 100.24
}
},
"quoteHash": "abc123def456"
}
}
]
}