Bulk list tasks
Returns an org-wide, paginated list of project tasks (including subtasks) across every project the calling user is a member of. Personal tasks are excluded. Rows are flat and denormalized (project name, space name, status, owners, tags) so external tools can consume them without follow-up calls. Ordered by taskId ascending for stable pagination.
Query parameters
Restrict to one space
Restrict to one project
Filter by task status name (case-insensitive exact match)
Only rows created or modified at/after this instant (ISO 8601 date-time, e.g. 2026-08-01T00:00:00.000Z). Use for incremental sync.
Include soft-deleted tasks; deleted rows carry deleted=true and deletedTime so consumers can remove them downstream
Page number (zero-based)
Page size (default 200, max 1000)
Headers
Organization ID (in header)
Response
Tasks fetched successfully
Example response
{
"success": true,
"message": "Operation completed successfully",
"code": 200,
"data": {
"items": [
{
"taskId": 5001,
"title": "Design landing page",
"projectId": 101,
"projectName": "Website Revamp",
"spaceId": 12,
"spaceName": "Marketing",
"status": "In Progress",
"statusCategory": "Active",
"priority": "High",
"completion": 60,
"owners": [
{
"userId": 57,
"name": "Radha",
"email": "radha@example.com"
}
]
}
],
"totalCount": 89,
"size": 200,
"totalPages": 1
},
"timestamp": "2023-01-01T12:00:00Z"
}Changes
Changed in 1 of the 10 revisions of this API.1
- ○
endpoint added
endpoint-added
- ○