Update Project Pending Action
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
[{
"id": 1,
"status": 1
},
{
"id": 1,
"status": 1
}]
Request Code Samples
curl --location --request PUT 'https://client-backend-quantum-project.test/cbre-client/api/projects/pending-action/update' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[{
"id": 1,
"status": 1
},
{
"id": 1,
"status": 1
}]'
Responses
application/json {
"status": "Success",
"message": "Success",
"data": null,
"success": true
}
Modified at 2024-06-25 12:23:01