ClickUp
Create Task
ClickUp
Create Task
POST
/
projects
/
{project_id}
/
actions
/
#CLICKUP_CREATE_TASK
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CLICKUP_CREATE_TASK' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "CLICKUP_CREATE_TASK",
"parameters": {
"listId": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"assignees": "<string>",
"dueDate": "<string>",
"additionalFields": "<string>"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
List : Select a List to create this task in. Use Connect Portal User Settings to allow users to select a ClickUp List.
Name
Description
Status : Select a Status for this task. Use Connect Portal User Settings to allow users to select a ClickUp Status.
Assignees : Select a Member (or an array of member IDs) to be assigned to this task. Use Connect Portal User Settings to allow users to select a ClickUp Member.
Due Date : Specify a date for this task to be due on.
Additional Fields : Specify additional fields to include on this task as JSON.
Response
200
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CLICKUP_CREATE_TASK' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "CLICKUP_CREATE_TASK",
"parameters": {
"listId": "<string>",
"name": "<string>",
"description": "<string>",
"status": "<string>",
"assignees": "<string>",
"dueDate": "<string>",
"additionalFields": "<string>"
}
}'