POST /tasks
Adds a new task.
Servers
- https://api.pipedrive.com/v1
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:
|
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
- Add HTTP Task to your workflow definition.
- 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.
- Click Test request to test run your request to the API and see the API's response.