Skip to main content

Booking Filter: Show customer phone number in Enroute application

PaxFlow Customer Support avatar
Written by PaxFlow Customer Support
Updated over 10 months ago

Booking filters can be used to customise which information is displayed in PAX lists in PaxFlow. Here is the formula to create a booking filter that will display a customer phone number on PAX lists on the Enroute application.

Start by following the instructions on how to create a new booking filter in the help article on Booking filters.

Use the advanced editor to copy and paste the jason code below to generate the filter:

{
"if": {
"customer_phone": {
"not": ""
}
},
"then": {
"paxlist_custom": {
"desktop": false,
"tablet": true,
"title": "Phonenumber",
"text": {
"from": "customer_phone"
}
}
}
}
Did this answer your question?