Skip to main content

Retrieve a project report

GET v1/projects/{:projectId}/report?mode=<'days' | 'hours'>&start_date=<number>&end_date=<number>

Allow to retrieve a report information for a project in the owned workspace.

Query parameters

NameTypeDescriptionRequiredDefault
modestringIndicates whether the totalAllocation will be reported in days or hoursNodays
start_dateintFilters the report start date, in millisecondsNo-
end_dateintFilters the report end date, in millisecondsNo-

Request Body Parameters

 No body parameters

Response

{
"status": 200,
"value": {
"message": "string",
"status": 200,
"data": {
"projectId": "string",
"external_id": "string",
"start_date"?: int,
"end_date"?: int,
"totalAllocation": number,
"resources": [
"resourceId": "string",
"firstName": "string",
"lastName": "string",
"totalAllocation": number,
"email"?: "string",
]
}
}
}
NameTypeDescriptionRequiredDefault
messagestringMessage of the responseYes-
statusnumberStatus of the responseYes200
dataobjectProject dataYes-

Data

NameTypeDescriptionRequiredDefault
projectIdstring (uuid)Project internal identifierYes-
external_idstringExternal reference to the projectNo-
start_dateintReport start dateNo-
end_dateintReport end dateNo-
totalAllocationnumberTotal allocationNo0
resourcesarrayList of resourcesNo[]

Resources

NameTypeDescriptionRequiredDefault
resourceIdstring (uuid)Resource idYes-
firstNamestringResource first nameYes-
lastNamestringResource last nameYes-
totalAllocationnumberTotal allocationNo0
emailstringResource emailNo-