Skip to main content

Create Task

Create a new task in your project.

Endpoint

POST /projects/{project_uuid}/tasks

Parameters

ParameterTypeDescriptionRequired
namestringThe name of the projectYes
creator_user_idintegerThe user UUID of the project creatorYes
descriptionstringA detailed description of the taskNo

Response

A successful response will return a 200 OK status code and a JSON object containing the details of the newly created task.

{
"uuid": "463310b5-e5f5-46de-a011-3c62494f675c",
"task_identifier": "146",
"title": "New API Task",
"description": "",
"description_plain": "",
"priority": 0,
"story_points": 0,
"task_form_identifier": null,
"insertion_method": "api",
"completed": false,
"completed_at": null,
"client_visibility": "not_visible",
"time_estimate": {
"duration": null,
"time_type": "hours",
"in_seconds": null
}
}