Returns available meeting time slots within the given time range, sorted by startTime ascending.
Notes:
curl --request GET \
--url https://api.lofty.com/v2.0/calendar/meetings/available \
--header 'Authorization: <authorization>'{
"data": {
"total": 123,
"slots": [
{
"startTime": "<string>",
"endTime": "<string>",
"startTimeMs": 123,
"endTimeMs": 123
}
]
}
}Documentation Index
Fetch the complete documentation index at: https://developer.lofty.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer [access_token]
Start time in ISO 8601 format with offset. Preferred over startTimeMs when both are provided.
End time in ISO 8601 format with offset. Preferred over endTimeMs when both are provided.
Start time as Unix timestamp in milliseconds. Used when startTime is not provided.
End time as Unix timestamp in milliseconds. Used when endTime is not provided.
IANA timezone identifier. When omitted, the caller's configured timezone is used.
Maximum number of slots to return.
x >= 1Available meeting slots with total count.
Response envelope for GET /v2.0/calendar/meetings/available. Wraps the available meeting slots under the 'data' field.
Available meeting time slots response
Show child attributes
curl --request GET \
--url https://api.lofty.com/v2.0/calendar/meetings/available \
--header 'Authorization: <authorization>'{
"data": {
"total": 123,
"slots": [
{
"startTime": "<string>",
"endTime": "<string>",
"startTimeMs": 123,
"endTimeMs": 123
}
]
}
}