POST tasks
Creates a task in the team
POST thgflow.com/api/rest/v1/teams/tasks
Request
{
"parent_id": null // or parent task id if you want to create a subtask
"assigned_users": [
{
"id": "assigned-user-id"
}
],
"task_template_input": {
"template_id": "template-id",
"fields": [
{
"id": "field-id",
"value": ["field-input"]
}
]
},
"title": "api test",
"status_id": "status-id",
"phase_id": "phase-id",
"metadata": {
"estimation": 8
}
}
Response
{
"id": string;
"code": string;
}