Skip to main content
GET
List projects

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1
Required range: 0 < x <= 9007199254740991
pageSize
integer
default:50
Required range: 0 < x <= 1000
countOnly
boolean

When true, answers totalCount with an empty data: the rows are never read, so no extend is selected and no transform runs. For a badge or a counter.

Example:

true

extend
enum<string>[]

Extend options (JSON-encoded array, e.g. ?extend=["category"]):

  • "folder": Include the folder each project is classified under (id, name).
  • "assigned-users": Include the users assigned to each project (id/ref).
Available options:
folder,
assigned-users
orderBy
object[]
whereName
string

Filter by name (contains, case-insensitive).

Maximum string length: 200
Example:

"lobby"

whereObject
string

Filter by object (contains, case-insensitive).

Maximum string length: 200
Example:

"lobby"

whereScheduledAt
object

Filter by scheduled date range.

Example:
whereAssignedUserIds
string<uuid>[]

Filter by assigned user ids (any match).

Maximum array length: 250
Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Example:
whereAssignedUserNames
string

Filter by assigned user name (contains, case-insensitive).

Maximum string length: 200
Example:

"lobby"

whereFolderId
string<uuid>[]

Filter by folder id (any match).

Maximum array length: 250
Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$
Example:
whereNoFolder

Filter projects with no folder.

Example:

true

whereFolderName
string

Filter by folder name (contains, case-insensitive).

Maximum string length: 200
Example:

"lobby"

whereIsDeleted

Filter by deletion status (overrides the default deletedAt filter).

Example:

true

whereUpdatedAt
object

Filter by updatedAt date range.

Example:
whereCreatedAt
object

Filter by createdAt date range.

Example:
whereText
string

Free-text search across name, object, assigned users, and folder name.

Maximum string length: 200
Example:

"lobby"

Response

Default Response

data
object[]
required
totalCount
integer
required
Required range: 0 <= x <= 9007199254740991
pagination
object
required