Bulk Export

Bulk list projects

Returns an org-wide, paginated list of projects across every space the calling user is a member of. Rows are flat and denormalized (space name, status, owners, tags) so external tools can consume them without follow-up calls. Ordered by projectId ascending for stable pagination.

get/v1/projects/bulk

Query parameters

spaceIdinteger
Example:12

Restrict to one space

statusstring
Example:In Progress

Filter by project 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 projects; deleted rows carry deleted=true and deletedTime so consumers can remove them downstream

pageinteger

Page number (zero-based)

sizeinteger

Page size (default 200, max 500)

Headers

X-Org-Idinteger required
Example:1

Organization ID (in header)

Response

Projects 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": [
      {
        "projectId": 101,
        "projectName": "Website Revamp",
        "spaceId": 12,
        "spaceName": "Marketing",
        "status": "In Progress",
        "statusCategory": "Active",
        "priority": "High",
        "completion": 40,
        "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