Skip to content
For LLMsView as Markdown·

ClickUp

All-in-one project management with tasks, docs, and goals via ClickUp API.

DetailValue
CategoryProject Management
Base URLhttps://api.clickup.com/api/v2
AuthenticationBearer Token
Endpoints6
Connector keyclickup

Using ClickUp in a workflow

  1. Go to Connections and click New Connection.
  2. Pick ClickUp from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /list/{list_id}/taskGet tasks in a list
POST /list/{list_id}/taskCreate a task in a list
GET /task/{task_id}Get a task
PUT /task/{task_id}Update a task
GET /teamGet authorized workspaces
GET /team/{team_id}/spaceGet spaces in a workspace

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /list/{list_id}/task

Get tasks in a list

DetailValue
Operation IDpm.listTasks
MethodGET
Path/list/{list_id}/task

Parameters

NameLocationTypeRequired
list_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.listTasks.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.

POST /list/{list_id}/task

Create a task in a list

DetailValue
Operation IDpm.createTask
MethodPOST
Path/list/{list_id}/task

Parameters

NameLocationTypeRequired
list_idpathstringYes

Request Body

FieldType
namestring
descriptionstring
priorityinteger

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.createTask.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.

GET /task/{task_id}

Get a task

DetailValue
Operation IDpm.getTask
MethodGET
Path/task/{task_id}

Parameters

NameLocationTypeRequired
task_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.getTask.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.

PUT /task/{task_id}

Update a task

DetailValue
Operation IDpm.updateTask
MethodPUT
Path/task/{task_id}

Parameters

NameLocationTypeRequired
task_idpathstringYes

Request Body

FieldType
namestring
statusstring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.updateTask.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.

GET /team

Get authorized workspaces

DetailValue
Operation IDpm.listWorkspaces
MethodGET
Path/team

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.listWorkspaces.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.

GET /team/{team_id}/space

Get spaces in a workspace

DetailValue
Operation IDpm.listSpaces
MethodGET
Path/team/{team_id}/space

Parameters

NameLocationTypeRequired
team_idpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your ClickUp connection from the Connection dropdown.
  3. In the Operation dropdown, select pm.listSpaces.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream ClickUp API reference.