v1
latestOpenAPI 3.0.12026-07-22120163333.7 KBMy 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.
Query parameters
User ID to query tasks for. Defaults to the current authenticated user if not provided.
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).
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.
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.
IANA timezone code (e.g. 'America/New_York'). If not provided, falls back to the user's configured timezone.
Headers
Bearer [access_token]
Response
Tasks assigned to the caller.
Example response
{
"tasks": [
{
"timeZoneCode": "America/Los_Angeles",
"address": "123 Main St, Los Angeles, CA"
}
]
}