Set signal
This page details the requirements to integrate the set signal which is used to request the offers and display aligned currency formatting and order total values across the panel.
Using set signal
set signal/* Travel xce-protection-offer example */
window.signalLayer.push({
signal: 'set',
element: 'xce-protection-offer',
onSet: async (req) => {
try {
const response = await req
if (!response) throw new Error('Empty response');
// your disable checkout logic here..
} catch (err) {
console.error('XCE Request Error: ', err);
}
},
data: {
offer_request: {
schema: 'demo-partner-travel:1',
customer:{
currency: 'AUD',
country: 'AU',
language: 'en',
},
context: {
total_tickets_price: 344,
departure_country: 'AU',
destination_country: 'US',
is_return: false,
number_of_children: 0,
number_of_adults: 1,
number_of_infants: 0,
trip_start_date: '2026-05-19T19:03:36.671Z',
trip_end_date: '2026-05-19T19:02:21.444Z',
flights: [
{
legs: [
{
departure_datetime: '2025-09-19T18:59:13.958Z',
arrival_datetime: '2025-09-19T18:59:13.958Z',
flight_number: 'SK1530',
marketing_airline_iata_code: 'SK',
marketing_airline_icao_code: 'SAS',
operating_airline_iata_code: 'SK',
operating_airline_icao_code: 'SAS',
departure_airport: 'SYD',
arrival_airport: 'JFK',
departure_country: 'AU',
arrival_country: 'US',
},
],
departure_datetime: '2025-09-19T18:59:13.958Z',
arrival_datetime: '2025-09-19T18:59:13.958Z',
departure_country: 'AU',
departure_city: 'SYD',
arrival_city: 'JFK',
},
],
},
},
currency_config: {
trailingZeroDisplay: 'stripIfInteger'
}
}
});Last updated