Create a new project
POST v1/projects
Allows to create a new project in the owned workspace.
Request Body Parameters
{
name: string (max: 180);
color?: <ProjectColors>;
status?: <ProjectStatus> default ‘TO_DO’;
external_id?: string (max: 180);
}
Name | Type | Description | Required | Default |
---|---|---|---|---|
name | string | Project name - name can not be TIME_OFF becouse it's a reserve keyword | Yes | - |
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", // (uuid format)
"external_id": "string"
}
}
}
Name | Type | Description | Required | Default |
---|---|---|---|---|
message | string | Message of the response | Yes | - |
status | number | Status of the response | Yes | 201 |
data | object | Project data | Yes | - |
Data
Name | Type | Description | Required | Default |
---|---|---|---|---|
projectId | string (uuid) | Project internal identifier | Yes | - |
external_id | string | External reference to the project | No | - |