Query free/busy
documentedReturns free/busy information for a set of calendars.
POST /freeBusyFreebusyno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://www.googleapis.com/calendar/v3/freeBusy" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"timeMin": "{{$timeMin}}", "timeMax": "{{$timeMax}}", "timeZone": "{{$timeZone}}", "groupExpansionMax": {{$groupExpansionMax}}, "calendarExpansionMax": {{$calendarExpansionMax}}, "items": [{"id": "{{$calendar_id}}"}]}'