POST v1/projects
Request Information
URI Parameters
None.
Body Parameters
NewProjectModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| usersIDs | Collection of integer | None. | |
| name | string | None. | |
| description | string | None. | |
| isPublic | boolean | None. | |
| startDate | date | None. | |
| endDate | date | None. | |
| durationDays | decimal number | None. | |
| durationHours | decimal number | None. | |
| parentId | integer | None. | |
| projectType | enmProjectType | None. | |
| nextToId | integer | None. | |
| dataToChange | enmDataToChange | None. | 
Request Formats
application/json, text/json, application/vnd.team.do+json
            Sample:
        
{
  "usersIDs": [
    1,
    2
  ],
  "name": "sample string 1",
  "description": "sample string 2",
  "isPublic": true,
  "startDate": "2025-10-30T22:45:01.0513852+00:00",
  "endDate": "2025-10-30T22:45:01.0513852+00:00",
  "durationDays": 1.1,
  "durationHours": 1.1,
  "parentId": 1,
  "projectType": 0,
  "nextToId": 1,
  "dataToChange": 0
}
        text/html
            Sample:
{"usersIDs":[1,2],"name":"sample string 1","description":"sample string 2","isPublic":true,"startDate":"2025-10-30T22:45:01.0513852+00:00","endDate":"2025-10-30T22:45:01.0513852+00:00","durationDays":1.1,"durationHours":1.1,"parentId":1,"projectType":0,"nextToId":1,"dataToChange":0}
        Response Information
Resource Description
ProjectOutModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | None. | |
| usersIDs | Collection of integer | None. | |
| completion | integer | None. | |
| parentBaseId | integer | None. | |
| lastUpdateDate | date | None. | |
| children | Collection of ProjectOutModel | None. | |
| orderRow | integer | None. | |
| status | enmProjectStatus | None. | |
| statusName | string | None. | |
| isLazyLoad | boolean | None. | |
| dynColumns | Collection of ProjectDynColumn | None. | |
| name | string | None. | |
| description | string | None. | |
| isPublic | boolean | None. | |
| startDate | date | None. | |
| endDate | date | None. | |
| durationDays | decimal number | None. | |
| durationHours | decimal number | None. | |
| parentId | integer | None. | |
| projectType | enmProjectType | None. | |
| nextToId | integer | None. | |
| dataToChange | enmDataToChange | None. | 
Response Formats
application/json
            Sample:
    
        Sample not available.
text/json
            Sample:
    
        Sample not available.
text/html
            Sample:
    
        Sample not available.
application/vnd.team.do+json
            Sample:
    
Sample not available.