- Dashboard
- Tool Based announcementsGET
- Top Planned ProjectsGET
- Top Active ProjectsGET
- Project Rag By CountryGET
- Project Rag By SiteGET
- Project Stats By RevenueGET
- Project Stats By Revenue And StatusGET
- Project Composition By SitesGET
- Active Project ScheduleGET
- Pending Approval CountsGET
- Pending Approval Counts By DurationGET
- Pending ApprovalsGET
- Pending Approvals Scope VariationsGET
- Active Project Composition By CategoryGET
- Project Revenue By MonthGET
- QHSE Risk by ProjectGET
- Media
- Notifications
- Projects
- Additional Authors
- Financial Summary & Forecast
- General Quotations
- Messages
- Pending Actions
- Pinned Projects
- Project
- View All
- Add Project
- Update Project
- Fetch Project
- Fetch Scope of Work History
- Project Cost Plan
- Project Cost Plan History
- Project Milestones
- Fetch Project By Sync Id (For Parent Project)
- Job Title with Hours
- Approve Project Offer
- Update Project Status
- Delete Project
- Job Title with Hours by Project Sync Id
- Fetch Project With Internal Data
- Project Statuses
- Project Status History
- Project Award Reasons
- Project Lost Reasons
- Export to Excel
- Project Approval List
- Project Approval Detail
- Project Assignees
- Download Client Offer
- 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
Add
POST
/cbre-client/api/todo-list
Dashboard
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
title
string
required
Example:
nam
priority_id
number
required
Example:
1658.8212
reminder_dates
array[string]
required
Example:
["2024-03-26T07:38:46"]
reminder_time
string
required
H:i:s
.Example:
07:38:46
start_date
string
required
Example:
2024-03-26T07:38:46
end_date
string
required
start_date
.Example:
2082-10-25
start_time
string
required
H:i:s
.Example:
07:38:46
end_time
string
required
H:i:s
. Must be a date after or equal to start_time
.Example:
2081-10-03
Example
{
"title": "nam",
"priority_id": 1658.8212,
"reminder_dates": [
"2024-03-26T07:38:46"
],
"reminder_time": "07:38:46",
"start_date": "2024-03-26T07:38:46",
"end_date": "2082-10-25",
"start_time": "07:38:46",
"end_time": "2081-10-03"
}
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 POST 'https://client-backend-quantum-project.test/cbre-client/api/todo-list' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "nam",
"priority_id": 1658.8212,
"reminder_dates": [
"2024-03-26T07:38:46"
],
"reminder_time": "07:38:46",
"start_date": "2024-03-26T07:38:46",
"end_date": "2082-10-25",
"start_time": "07:38:46",
"end_time": "2081-10-03"
}'
Responses
🟢200OK
application/json
Body
status
string
optional
message
string
optional
data
object
optional
success
boolean
optional
Example
{
"status": "string",
"message": "string",
"data": {},
"success": true
}