Get List of Holidays
GET {{airtable_url}}?sort%5B0%5D%5Bfield%5D=date&sort%5B0%5D%5Bdirection%5D=asc&filterByFormula=AND(IS_AFTER(%7Bdate%7D%2C+DATETIME_PARSE('{{from_date}}'))%2C+IS_BEFORE(%7Bdate%7D%2C+DATETIME_PARSE('{{to_date}}')))
Get the list of holidays in ascending order of date from the airtable database. The response list contains all the holidays coming in-between the range of dates passed.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
sort%5B0%5D%5Bfield%5D | string | sort by date | |
sort%5B0%5D%5Bdirection%5D | string | sort by date in ascending order | |
filterByFormula | string | filter by formula to get the holidays in between two given dates |