Skip to main content

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);
}
NameTypeDescriptionRequiredDefault
namestringProject name - name can not be TIME_OFF becouse it's a reserve keywordYes-
colorProjectColorsProject colorNogray
statusProjectStatusProject statusNoTO_DO
external_idstringExternal reference to the projectNo-

Response

{
"status": 201,
"value": {
"message": "string",
"status": 201,
"data": {
"projectId": "string", // (uuid format)
"external_id": "string"
}
}
}
NameTypeDescriptionRequiredDefault
messagestringMessage of the responseYes-
statusnumberStatus of the responseYes201
dataobjectProject dataYes-

Data

NameTypeDescriptionRequiredDefault
projectIdstring (uuid)Project internal identifierYes-
external_idstringExternal reference to the projectNo-