Create Task
Create a new task in your project.
Endpoint
POST /projects/{project_uuid}/tasks
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| name | string | The name of the project | Yes |
| creator_user_id | integer | The user UUID of the project creator | Yes |
| description | string | A detailed description of the task | No |
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
}
}