ClickUp

ClickUp

Create ClickUp tasks from event data

Configuration

OptionDescription
ClickUp account
Type: integration
Required: True
Workspace ID
Type: integration_field
Required: True

ID of the ClickUp workspace.

Space ID
Type: integration_field
Required: True

ID of the ClickUp space.

List ID
Type: integration_field
Required: True

ID of the ClickUp list.

Task Name
Type: string
Required: True

Name of the ClickUp task to create.

Status ID
Type: string
Required: False

ID of the ClickUp status to create the task in.

Priority ID
Type: string
Required: False

ID of the ClickUp priority to create the task in.

Assignee ID
Type: string
Required: False

Array of member IDs to assign the task to. This has to be an array in the following format: {[123]}

Description
Type: string
Required: False

Description of the ClickUp task.

Using our REST API you can create this destination like so:

Terminal
# Create a new destination
curl --location 'https://us.i.posthog.com/api/environments/:project_id/hog_functions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <POSTHOG_PERSONAL_API_KEY>' \
--data '{
"type": "destination",
"name": "ClickUp",
"inputs": {
"oauth": {
"value": ""
},
"workspaceId": {
"value": ""
},
"spaceId": {
"value": ""
},
"listId": {
"value": ""
},
"taskName": {
"value": ""
}
},
"enabled": true,
"template_id": "template-clickup"
}'