API
Availability Constraints can now be applied by the number of tagged events per day.
This is in addition to the existing constraint of the number of tagged events per week, enabling new ways of constraining the availability returned in Availability queries and Sequenced Availability queries.
These constraints can be applied separately or combined to use both constraints at once.
For example, it is now possible to make a query to find times constrained by "a maximum of 2 interviews per day, and up to 5 that week":
{
"participants": [{
"members": [
{
"sub": "acc_567236000909002",
"availability_constraints": [
{
"tags": {
"private": [{ "value": "Interview" }]
},
"limit": 2,
"period": "day",
"tzid": "Europe/London"
},
{
"tags": {
"private": [{ "value": "Interview" }]
},
"limit": 5,
"period": "week"
}
]
}
],
"required": "all"
}],
...
}
More details can be found in the Availability query documentation and also within the Sequenced Availability query documentation.