Progress of project build
GET/projects/:projectId/progress
Require admin rights
Request
Path Parameters
projectId stringrequired
Query Parameters
position int32
Default value:
-1
Responses
- 200
- 401
- 404
- 500
Project build progress
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
text stringnullable
New log text given from previous position until current end of log
Example:
Resource creation started...
complete boolean
Indicates if build is complete
position int32
Current position log readed
Example:
28
filesToProcess int32nullable
Amount of files to process before build started
Example:
5
rebuild booleannullable
Project rebuild is in progress.
deviations booleannullable
Deviations calculation is in progress. If the project is being rebuilt (rebuild is true) - deviations are recalculated anyway regardless of this flag.
clash booleannullable
Clashes calculation is in progress. If the project is being rebuilt (rebuild is true) - clashes are recalculated anyway regardless of this flag.
[
{
"text": "Resource creation started...",
"complete": true,
"position": 28,
"filesToProcess": 5,
"rebuild": true,
"deviations": true,
"clash": true
}
]
Unauthorized
Not Found
Server Error
Loading...