ClickUp
ClickUp is a cloud-based collaboration tool that offers task management, document sharing, goal tracking, and other productivity features for teams.
Categories: project-management
Type: clickup/v1
Connections
Version: 1
OAuth2 Authorization Code
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
clientId | Client Id | STRING | TEXT | true | |
clientSecret | Client Secret | STRING | TEXT | true |
Actions
Create List
Name: createList
Creates a new List in specified Folder.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
workspaceId | Workspace ID | NUMBER | SELECT | true | |
spaceId | Space ID | NUMBER Depends OnworkspaceId | SELECT | true | |
folderId | Folder ID | NUMBER Depends OnspaceId, workspaceId | SELECT | ID of the folder where new list will be created. | true |
__item | List | OBJECT Properties{STRING(name)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT Properties{STRING(id), STRING(name), {STRING(id), STRING(name)}(folder), {STRING(id), STRING(name)}(space)} | OBJECT_BUILDER |
JSON Example
{ "label" : "Create List", "name" : "createList", "parameters" : { "workspaceId" : 0.0, "spaceId" : 0.0, "folderId" : 0.0, "__item" : { "name" : "" } }, "type" : "clickup/v1/createList"}
Create Task
Name: createTask
Create a new task in a ClickUp workspace and list.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
workspaceId | Workspace ID | NUMBER | SELECT | true | |
spaceId | Space ID | NUMBER Depends OnworkspaceId | SELECT | true | |
folderId | Folder ID | NUMBER Depends OnspaceId, workspaceId | SELECT | false | |
listId | List ID | NUMBER Depends OnfolderId, spaceId, workspaceId | SELECT | ID of the list where new task will be created. | true |
__item | Task | OBJECT Properties{STRING(name), STRING(description)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT Properties{STRING(id), STRING(name), STRING(description), STRING(url), {STRING(id), STRING(name)}(list), {STRING(id), STRING(name)}(folder), {STRING(id)}(space)} | OBJECT_BUILDER |
JSON Example
{ "label" : "Create Task", "name" : "createTask", "parameters" : { "workspaceId" : 0.0, "spaceId" : 0.0, "folderId" : 0.0, "listId" : 0.0, "__item" : { "name" : "", "description" : "" } }, "type" : "clickup/v1/createTask"}
Create Folder
Name: createFolder
Creates a new folder in a ClickUp workspace.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
workspaceId | Workspace ID | NUMBER | SELECT | true | |
spaceId | Space ID | NUMBER Depends OnworkspaceId | SELECT | ID of the space where new folder will be created. | true |
__item | Folder | OBJECT Properties{STRING(name)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | OBJECT Properties{STRING(id), STRING(name), {STRING(id), STRING(name)}(space)} | OBJECT_BUILDER |
JSON Example
{ "label" : "Create Folder", "name" : "createFolder", "parameters" : { "workspaceId" : 0.0, "spaceId" : 0.0, "__item" : { "name" : "" } }, "type" : "clickup/v1/createFolder"}
Triggers
New List
Name: newList
Triggers when new list is created.
Type: DYNAMIC_WEBHOOK
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
workspaceId | Workspace ID | STRING | SELECT | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
name | STRING | TEXT |
folder | OBJECT Properties{STRING(id), STRING(name)} | OBJECT_BUILDER |
space | OBJECT Properties{STRING(id), STRING(name)} | OBJECT_BUILDER |
JSON Example
{ "label" : "New List", "name" : "newList", "parameters" : { "workspaceId" : "" }, "type" : "clickup/v1/newList"}
New Task
Name: newTask
Triggers when new task is created.
Type: DYNAMIC_WEBHOOK
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
workspaceId | Workspace ID | STRING | SELECT | true |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
id | STRING | TEXT |
name | STRING | TEXT |
description | STRING | TEXT |
url | STRING | TEXT |
list | OBJECT Properties{STRING(id), STRING(name)} | OBJECT_BUILDER |
folder | OBJECT Properties{STRING(id), STRING(name)} | OBJECT_BUILDER |
space | OBJECT Properties{STRING(id), STRING(name)} | OBJECT_BUILDER |
JSON Example
{ "label" : "New Task", "name" : "newTask", "parameters" : { "workspaceId" : "" }, "type" : "clickup/v1/newTask"}