Update a project
PATCH v1/projects/{:projectId}
Allows the update of a project data.
Path Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
projectId | string (uuid) | Project internal identifier | Yes | - |
Request Body Parameters
{
name?: string (max 180)
status?: <ProjectStatus>
color?: <ProjectColors>
external_id: string (max 180)
}
Name | Type | Description | Required | Default |
---|---|---|---|---|
name | string | Project name | No | - |
color | ProjectColors | Project color | No | gray |
status | ProjectStatus | Project status | No | TO_DO |
external_id | string | External reference to the project | No | - |
Response
{
"status": 201,
"value": {
"message": "string",
"status": 201,
"data": {
"projectId": "string",
"external_id": "string"
}
}
}
Name | Type | Description | Required | Default |
---|---|---|---|---|
message | string | Message of the response | Yes | - |
status | number | Status of the response | Yes | 201 |
Data
Name | Type | Description | Required | Default |
---|---|---|---|---|
projectId | string (uuid) | Project internal identifier | Yes | - |
external_id | string | External reference to the project | No | - |