POST /tasks

Adds a new task.

Servers

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Request body fields

Name Type Required Description
project_id Number Yes

The ID of a project

description String No

The description of the task

assignee_id Number No

The ID of the user who will be the assignee of the task

parent_task_id Number No

The ID of a parent task. Can not be ID of a task which is already a subtask.

done Number No

Whether the task is done or not. 0 = Not done, 1 = Done.

Possible values:

  • 0
  • 1
title String Yes

The title of the task

due_date String No

The due date of the task. Format: YYYY-MM-DD.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.