The Public Holidays Lookup Data Connector provides a simple way to lookup public holidays and long weekends of over 100 countries using Nager.Date's Public Holidays API.
Once installed and added to a Form, you can access this Data Connector in the Form's server event scripts using: connectors.verjio.publicholidays
.
publicholidays.getHolidays
looks up the public holidays for a given country and year.
publicholidays.getLongWeekends
looks up the long weekends for a given country and year.
publicholidays.isHolidayToday
determines if the given country has a public holiday today.
publicholidays.isHoliday
determines if the given county has a public holiday on the specified date.
Code Example:
var holidays = connectors.verjio.publicholidays.getHolidays('GB', 2025);
For comprehensive information on how to use and develop applications with this Data Connector please refer to the Support section.
The Installation section has instructions on installing it into your Workspace.
Complete JavaScript API documentation for this Data Connector can be found in the Documentation section.