Create a folder
Projects Dashboard / Folders
Create a folder
Description
Create a folder inside the folder passed in the url to group projects inside it.
Response
200 OK
{
"createdAt": "string",
"id": "string",
"title": "string",
"totalProjectsCount": "number",
}
where:
createdAt: Date of creation of the folder in the formatYYYY-MM-DDTHH:mm:ss.SSSZ.id: Id of the folder created.title: Name of the folder.totalProjectsCount: Number of projects inside the folder. When the folder is created, this value will always be zero.
400 Bad Request
folderIdfrom url path is not found.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.
POST
Create a folder
Description
Create a folder inside the folder passed in the url to group projects inside it.Response
200 OK
createdAt: Date of creation of the folder in the formatYYYY-MM-DDTHH:mm:ss.SSSZ.id: Id of the folder created.title: Name of the folder.totalProjectsCount: Number of projects inside the folder. When the folder is created, this value will always be zero.
400 Bad Request
folderId from url path is not found.
401 Unauthorized
The user doesn’t have permissions.
500 Internal Server Error
Error occurred while processing the request.