Get all projects

GET {{baseUrl}}/projects?cursor=<string>&limit=<integer>&filter_id=<integer>&status=<string>&phase_id=<integer>&include_archived=<boolean>

Returns all projects. This is a cursor-paginated endpoint. For more information, please refer to our documentation on pagination.

Request Params

KeyDatatypeRequiredDescription
cursorstringFor pagination, the marker (an opaque string value) representing the first item on the next page
limitstringFor pagination, the limit of entries to be returned. If not provided, 100 items will be returned.
filter_idstringThe ID of the filter to use
statusstringIf supplied, includes only projects with the specified statuses. Possible values are open, completed, canceled and deleted. By default deleted projects are not returned.
phase_idstringIf supplied, only projects in specified phase are returned
include_archivedstringIf supplied with true then archived projects are also included in the response. By default only not archived projects are returned.

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;success&quot;:true,&quot;data&quot;:[{&quot;id&quot;:8,&quot;title&quot;:&quot;Project&quot;,&quot;description&quot;:&quot;Project Description&quot;,&quot;status&quot;:&quot;open&quot;,&quot;status_change_time&quot;:&quot;2023-09-12 11:12:18.110&quot;,&quot;start_date&quot;:&quot;2023-09-18&quot;,&quot;end_date&quot;:&quot;2024-03-04&quot;,&quot;owner_id&quot;:19,&quot;add_time&quot;:&quot;2023-09-12 11:12:18.110&quot;,&quot;update_time&quot;:&quot;2023-09-14 05:45:40.084&quot;,&quot;labels&quot;:[13,14],&quot;archive_time&quot;:&quot;2023-09-15 11:12:18.110&quot;,&quot;deal_ids&quot;:[1,2],&quot;person_id&quot;:2,&quot;org_id&quot;:3,&quot;board_id&quot;:1,&quot;phase_id&quot;:1}],&quot;additional_data&quot;:{&quot;next_cursor&quot;:&quot;eyJhY3Rpdml0aWVzIjoyN30&quot;}}