Skip to main content

List all projects

GET v1/projects?page=<int>&pageLimit=<int>&mode=<'days' | 'hours'>&sort=<'name' | 'createdAt' | 'totalAllocation'>&direction=<'ASC' | 'DESC'>

Allow to retrieve all projects in the owned workspace.

Query parameters

NameTypeDescriptionRequiredDefault
pageintSelected page numberNo1
pageLimitintNumber of items returned per callNo15
sortstringField of the project to be sortedNo'createdAt'
directionstringIndicates the sorting directionNo'ASC'
modestringIndicates whether the totalAllocation will be reported in days or hoursNo'days'

Request Body Parameters

 No body parameters

Response

{
"status": 200,
"value": {
"message": "string",
"status": 200,
"count": "int",
"totalCount": "int",
"currentPage": "int",
"nextPage": "int" | null,
"prevPage": "int" | null,
"data": [
{
"id": "string",
"name": "string",
"status": <ProjectStatus>,
"color": <ProjectColors>,
"totalAllocation": "number",
"external_id": "string",
}
]
}

}
NameTypeDescriptionRequiredDefault
messagestringMessage of the responseYes-
statusnumberStatus of the responseYes200
countnumberNumber of items returnedYes0
totalCountnumberTotal number of itemsYes0
currentPagenumberCurrent page numberYes1
nextPagenumberNext page number - null indicates that a new page is not availableNonull
prevPagenumberPrevious page number - null indicates that a previous page is not availableNonull
dataobjectList of projectsYes[]

Data

NameTypeDescriptionRequiredDefault
idstring (uuid)Project internal identifierYes-
namestringProject nameYes-
colorProjectColorsProject colorNogray
statusProjectStatusProject statusNoTO_DO
totalAllocationnumberTotal allocationNo0
external_idstringExternal reference to the projectNo-