Projects
Update project
This endpoint allows partial updates of a project (such as its name or description). Only the fields explicitly provided in the request body will be updated.
patch/cloud/v1/projects/{project_id}
Path parameters
project_idinteger required
Project ID
Example:4
Project ID
Request body
Example request
{
"description": "Project description",
"name": "my-project"
}Response
OK
Example response
{
"client_id": 1,
"created_at": "2019-12-31T23:59:59Z",
"description": "Project description",
"id": 1,
"is_default": true,
"name": "default",
"state": "ACTIVE",
"task_id": "7244e161-664c-4afd-a34e-7003eac4d949"
}