Bulk Export

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.

get/v1/tasks/bulk

Query parameters

spaceIdinteger
Example:12

Restrict to one space

projectIdinteger
Example:101

Restrict to one project

statusstring
Example:In Progress

Filter by task status name (case-insensitive exact match)

updatedSincestring date-time

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.

includeDeletedboolean

Include soft-deleted tasks; deleted rows carry deleted=true and deletedTime so consumers can remove them downstream

pageinteger

Page number (zero-based)

sizeinteger

Page size (default 200, max 1000)

Headers

X-Org-Idinteger required
Example:1

Organization ID (in header)

Response

Tasks fetched successfully

successboolean

Indicates if the operation was successful

messagestring

Message describing the result of the operation

codeinteger

HTTP status code of the response

timestampstring date-time

Timestamp of the response

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