TasksCreateNew - maxkunitsa/timeTracker GitHub Wiki
#New task creation
Creates a new task for a specified project.
Note: Authentication required
POST /projects/{project-id}/tasks
-- #####Path Parameters
Name | Description |
---|---|
project-id | Id of the project |
-- #####Payload
Name | Description |
---|---|
name | Name of the task |
-- #####Response Example (success)
{
"id": "56426b8864cb6c6a08ce73f1",
"name": "Super task",
"projectId": "56424f9364cbffa00ef8d7e7"
}
-- #####Response Example (error)
{
"message": "Request payload has incorrect format"
}