Projects
Update a project by ID
Partially updates a project and its member list. Only provided fields are updated.
patch/projects/{id}
Path parameters
idinteger required
Example:1
The numeric project ID
Request body
Example request
{
"members": [
2,
3,
5
]
}Response
Project updated successfully
Example response
{
"message": "Accepted",
"data": {
"id": 42,
"uc_id": "UC-7",
"project_title": "Customer Support Chatbot",
"owner": 1,
"geography": 1,
"framework": [
{
"name": "EU AI Act"
}
]
}
}