Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 1.47 KB

File metadata and controls

19 lines (16 loc) · 1.47 KB

# TaskPostRequest

Properties

Name Type Description Notes
title string The title of the task
project_id int The ID of the project this task is associated with
parent_task_id int The ID of the parent task. Cannot be the ID of a task that is already a subtask. [optional]
description string The description of the task [optional]
done int Whether the task is done or not. `0` = Not done, `1` = Done. [optional]
milestone int Whether the task is a milestone or not. `0` = Not a milestone, `1` = Milestone. [optional]
due_date \DateTime The due date of the task. Format: YYYY-MM-DD. [optional]
start_date \DateTime The start date of the task. Format: YYYY-MM-DD. [optional]
assignee_id int The ID of the user assigned to the task. When set, the `assignee_ids` field will be overwritten with this value. [optional]
assignee_ids int[] The IDs of users assigned to the task. When set, the `assignee_id` field will be set to the first value in this array, or `null` if empty. [optional]
priority int The priority of the task [optional]

[Back to Model list] [Back to API list] [Back to README]