Fetching the project estimations
Developing
GET
/project/{projectId}/estimation
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/project//estimation' \
--header 'Content-Type: application/json' \
--data-raw '{
"statusCode": 200,
"success": true,
"message": "ProjectEstimations retrieved successfully",
"data": [
{
"id": "est_abc123",
"pickModelComponentId": "cmp_xyz987",
"requiredDaysForCompletion": 5,
"projectId": "proj_456def",
"enableParallelInspection": false,
"preRequisiteComponentId": "cmp_pre123",
"createdById": "user_789",
"createdAt": "2025-05-31T10:30:00.000Z",
"updatedAt": "2025-06-01T11:00:00.000Z"
},
{
"id": "est_def456",
"pickModelComponentId": "cmp_xyz654",
"requiredDaysForCompletion": 3,
"projectId": "proj_456def",
"enableParallelInspection": true,
"preRequisiteComponentId": null,
"createdById": "user_456",
"createdAt": "2025-05-30T12:00:00.000Z",
"updatedAt": "2025-06-01T09:00:00.000Z"
}
]
}'
Response Response Example
{}
Request
Path Params
projectId
string
required
Body Params application/json
Responses
Modified at 2025-06-06 15:13:55