My Tasks
Returns tasks assigned to the caller, sorted by startTime descending. Supports cursor-based pagination via currentId (offset) + limit.
Notes:
- currentId must be >= 0 (INVALID_PARAMETER otherwise).
- limit must be in [1, 100] (LIMIT_NOT_VALID otherwise).
- timeZoneCode selects how start/end times are formatted; when omitted, the caller’s configured timezone is used.
Headers
Bearer [access_token]
Query Parameters
User ID to query tasks for. Defaults to the current authenticated user if not provided.
Cursor-based pagination anchor. Pass the last returned item's id to fetch the next page. Default 0 (start from beginning).
Page size, 1–100. Default 10.
IANA timezone code (e.g. 'America/New_York'). If not provided, falls back to the user's configured timezone.
Response
Tasks assigned to the caller.
Wrapped response for GET /v2.0/tasks and GET /v2.0/tasks/my-tasks. Task entries are returned under the 'tasks' key.
Tasks and / or appointments matching the query.