Create ClickUp tasks from event data
Configuration
| Option | Description |
|---|---|
ClickUp accountType: integration Required: True | |
Workspace IDType: integration_field Required: True | ID of the ClickUp workspace. |
Space IDType: integration_field Required: True | ID of the ClickUp space. |
List IDType: integration_field Required: True | ID of the ClickUp list. |
Task NameType: string Required: True | Name of the ClickUp task to create. |
Status IDType: string Required: False | ID of the ClickUp status to create the task in. |
Priority IDType: string Required: False | ID of the ClickUp priority to create the task in. |
Assignee IDType: string Required: False | Array of member IDs to assign the task to. This has to be an array in the following format: |
DescriptionType: string Required: False | Description of the ClickUp task. |
Using our REST API you can create this destination like so:
Terminal
# Create a new destinationcurl --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"}'