Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"project_client_directory": [
{
"id": 241,
"client_point_of_contact_id": 1,
"designation": "designation updated",
"person_name": "sd fsdf",
"email": "sdf@sdaf.xom",
"phone": "123456789",
"is_manual": 1,
"client_type": "client",
"is_orderbook": 1,
"is_action_log": 0,
"is_punchlist": 0,
"is_meeting": null,
"is_link": false,
"isReadOnlyMode": false
}
]
}
Request Code Samples
curl --location --request PUT 'https://client-backend-quantum-project.test/cbre-client/api/projects//project-directory' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"project_client_directory": [
{
"id": 241,
"client_point_of_contact_id": 1,
"designation": "designation updated",
"person_name": "sd fsdf",
"email": "sdf@sdaf.xom",
"phone": "123456789",
"is_manual": 1,
"client_type": "client",
"is_orderbook": 1,
"is_action_log": 0,
"is_punchlist": 0,
"is_meeting": null,
"is_link": false,
"isReadOnlyMode": false
}
]
}'
Responses
application/json {
"status": "Success",
"message": "Success",
"data": null,
"success": true
}
Modified at 2024-06-25 12:23:01