- Dashboard
- Tool Based announcements
- Top Planned Projects
- Top Active Projects
- Project Rag By Country
- Project Rag By Site
- Project Stats By Revenue
- Project Stats By Revenue And Status
- Project Composition By Sites
- Active Project Schedule
- Pending Approval Counts
- Pending Approval Counts By Duration
- Pending Approvals
- Pending Approvals Scope Variations
- Active Project Composition By Category
- Project Revenue By Month
- QHSE Risk by Project
- Media
- Notifications
- Projects
- Additional Authors
- Financial Summary & Forecast
- General Quotations
- Messages
- Pending Actions
- Pinned Projects
- Project
- View AllGET
- Add ProjectPOST
- Update ProjectPUT
- Fetch ProjectGET
- Fetch Scope of Work HistoryGET
- Project Cost PlanGET
- Project Cost Plan HistoryGET
- Project MilestonesGET
- Fetch Project By Sync Id (For Parent Project)GET
- Job Title with HoursGET
- Approve Project OfferPUT
- Update Project StatusPUT
- Delete ProjectDELETE
- Job Title with Hours by Project Sync IdPOST
- Fetch Project With Internal DataGET
- Project StatusesGET
- Project Status HistoryGET
- Project Award ReasonsGET
- Project Lost ReasonsGET
- Export to ExcelGET
- Project Approval ListGET
- Project Approval DetailGET
- Project AssigneesGET
- Download Client OfferGET
- Project Statuses
- Purchase Order
- Project Directory
- Reports
- Scope Change
- Provider(CBRE Side Sync Calls)
- Sites
- To-Do List
- User Configurations
- File Manager
- QuestionnaireGET
- Disciplines ListGET
- Contract MSOWs By CountryGET
- RFQ Event SSJ QuestionsGET
- Check Client Portal StatusGET
Update Project Status
PUT
/cbre-client/api/projects/{projectId}/update-status
Projects
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
projectId
string
required
Body Params application/json
status_code
integer
required
project_lost_reasons
array[integer]
required
Example
{
"status_code": 12,
"project_lost_reasons": [
1,
2
],
"is_scope_variation": 1,
"approval_id": 2
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://client-backend-quantum-project.test/cbre-client/api/projects//update-status' \
--header 'Content-Type: application/json' \
--data-raw '{
"status_code": 12,
"project_lost_reasons": [
1, 2
],
"is_scope_variation": 1,
"approval_id": 2
}'
Responses
🟢200OK
application/json
Body
status
string
optional
message
string
optional
data
object
optional
success
boolean
optional
Example
{
"status": "Success",
"message": "Success",
"data": null,
"success": true
}