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.
Query parameters
Restrict to one space
Filter by project 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 projects; deleted rows carry deleted=true and deletedTime so consumers can remove them downstream
Page number (zero-based)
Page size (default 200, max 500)
Headers
Organization ID (in header)
Response
Projects fetched successfully
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
- ○
endpoint added
endpoint-added
- ○