/clickup-workspaces | Type: Application | PCID required: Yes
Tools
clickup_workspaces_add_task_to_list
Add Task To List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | List Id |
task_id | string | Yes | — | Task Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "List Id"
},
"task_id": {
"type": "string",
"description": "Task Id"
}
},
"required": [
"PCID",
"list_id",
"task_id"
]
}
clickup_workspaces_create_folder
Create Folder Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
name | string | Yes | — | The name value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"name": {
"type": "string",
"description": "The name value"
}
},
"required": [
"PCID",
"space_id",
"name"
]
}
clickup_workspaces_create_folder_from_template
Create Folder from template Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | string | Yes | — | ID of the Space where the Folder will be created |
template_id | string | Yes | — | ID of the Folder template to use. Template IDs include a t- prefix (e.g., t-7162342). Retrieve available template IDs using the Get Folder Templates endpoint. |
name | string | Yes | — | Name of the new Folder |
options | object | No | — | Options for creating the Folder |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "string",
"description": "ID of the Space where the Folder will be created"
},
"template_id": {
"type": "string",
"description": "ID of the Folder template to use. Template IDs include a `t-` prefix (e.g., `t-7162342`). Retrieve available template IDs using the [Get Folder Templates](#tag/Templates/operation/GetFolderTemplates) endpoint."
},
"name": {
"type": "string",
"description": "Name of the new Folder"
},
"options": {
"type": "object",
"description": "Options for creating the Folder",
"properties": {
"return_immediately": {
"type": "boolean",
"description": "Flag if newly created Object ID should be returned without waiting for the asset itself and all its nested assets to be applied. If set to true, access checks are performed before returning, but the object might not be fully created yet. In case of a timeout on syncronous requests, the of objects from the template will continue to be created past the timeout."
},
"content": {
"type": "string",
"description": "List description"
},
"time_estimate": {
"type": "boolean",
"description": "Include time (hours, minutes and seconds)"
},
"automation": {
"type": "boolean",
"description": "Import automation options"
},
"include_views": {
"type": "boolean",
"description": "Import views"
},
"old_due_date": {
"type": "boolean",
"description": "Import tasks due dates"
},
"old_start_date": {
"type": "boolean",
"description": "Import tasks start dates"
},
"old_followers": {
"type": "boolean",
"description": "Import tasks watchers"
},
"comment_attachments": {
"type": "boolean",
"description": "Import tasks comment attachments"
},
"recur_settings": {
"type": "boolean",
"description": "Import tasks recurring settings"
},
"old_tags": {
"type": "boolean",
"description": "Import tasks tags"
},
"old_statuses": {
"type": "boolean",
"description": "Import tasks status settings"
},
"subtasks": {
"type": "boolean",
"description": "Import tasks subtasks"
},
"custom_type": {
"type": "boolean",
"description": "Import tasks types"
},
"old_assignees": {
"type": "boolean",
"description": "Import tasks assignees"
},
"attachments": {
"type": "boolean",
"description": "Import tasks attachments"
},
"comment": {
"type": "boolean",
"description": "Import tasks comments"
},
"old_status": {
"type": "boolean",
"description": "Import tasks current statuses"
},
"external_dependencies": {
"type": "boolean",
"description": "Import tasks external dependencies"
},
"internal_dependencies": {
"type": "boolean",
"description": "Import tasks internal dependencies"
},
"priority": {
"type": "boolean",
"description": "Import tasks priority"
},
"custom_fields": {
"type": "boolean",
"description": "Import tasks Custom Fields"
},
"old_checklists": {
"type": "boolean",
"description": "Import tasks checklists"
},
"relationships": {
"type": "boolean",
"description": "Import tasks relationships"
},
"old_subtask_assignees": {
"type": "boolean",
"description": "Import tasks subtasks and assignees combination"
},
"start_date": {
"type": "string",
"description": "Project start date for remapping dates"
},
"due_date": {
"type": "string",
"description": "Project due date for remapping dates"
},
"remap_start_date": {
"type": "boolean",
"description": "Remap start dates"
},
"skip_weekends": {
"type": "boolean",
"description": "Skip weekends when remapping dates"
},
"archived": {
"type": "integer",
"description": "Include archived tasks (1 or 2 or null)",
"enum": [
1,
2
]
}
}
}
},
"required": [
"PCID",
"space_id",
"template_id",
"name"
]
}
clickup_workspaces_create_folder_list_from_template
Create List From Template in Folder Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | string | Yes | — | ID of the Folder where the List will be created |
template_id | string | Yes | — | ID of the List template to use. Template IDs include a t- prefix (e.g., t-15363293). Retrieve available template IDs using the Get List Templates endpoint. |
name | string | Yes | — | Name of the new List |
options | object | No | — | Options for creating the List |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "string",
"description": "ID of the Folder where the List will be created"
},
"template_id": {
"type": "string",
"description": "ID of the List template to use. Template IDs include a `t-` prefix (e.g., `t-15363293`). Retrieve available template IDs using the [Get List Templates](#tag/Templates/operation/GetListTemplates) endpoint."
},
"name": {
"type": "string",
"description": "Name of the new List"
},
"options": {
"type": "object",
"description": "Options for creating the List",
"properties": {
"return_immediately": {
"type": "boolean",
"description": "Flag if newly created Object ID should be returned without waiting for the asset itself and all its nested assets to be applied. If set to true, access checks are performed before returning, but the object might not be fully created yet. In case of a timeout on syncronous requests, the of objects from the template will continue to be created past the timeout."
},
"content": {
"type": "string",
"description": "List description"
},
"time_estimate": {
"type": "number",
"description": "Include time (hours, minutes and seconds)"
},
"automation": {
"type": "boolean",
"description": "Import automation settings"
},
"include_views": {
"type": "boolean",
"description": "Import views"
},
"old_due_date": {
"type": "boolean",
"description": "Import tasks' due dates"
},
"old_start_date": {
"type": "boolean",
"description": "Import tasks' start dates"
},
"old_followers": {
"type": "boolean",
"description": "Import tasks' watchers"
},
"comment_attachments": {
"type": "boolean",
"description": "Import tasks' comment attachments"
},
"recur_settings": {
"type": "boolean",
"description": "Import tasks' recurring settings"
},
"old_tags": {
"type": "boolean",
"description": "Import tasks' tags"
},
"old_statuses": {
"type": "boolean",
"description": "Import tasks' status settings"
},
"subtasks": {
"type": "boolean",
"description": "Import tasks' subtasks"
},
"custom_type": {
"type": "boolean",
"description": "Import tasks' task types"
},
"old_assignees": {
"type": "boolean",
"description": "Import tasks' assignees"
},
"attachments": {
"type": "boolean",
"description": "Import tasks' attachments"
},
"comment": {
"type": "boolean",
"description": "Import tasks' comments"
},
"old_status": {
"type": "boolean",
"description": "Import tasks' current statuses"
},
"external_dependencies": {
"type": "boolean",
"description": "Import tasks' external dependencies"
},
"internal_dependencies": {
"type": "boolean",
"description": "Import tasks' internal dependencies"
},
"priority": {
"type": "boolean",
"description": "Import tasks' priorities"
},
"custom_fields": {
"type": "boolean",
"description": "Import tasks' Custom Fields"
},
"old_checklists": {
"type": "boolean",
"description": "Import tasks' checklists"
},
"relationships": {
"type": "boolean",
"description": "Import tasks' relationships"
},
"old_subtask_assignees": {
"type": "boolean",
"description": "Import tasks' subtask assignees"
},
"start_date": {
"type": "string",
"description": "Project start date for remapping dates"
},
"due_date": {
"type": "string",
"description": "Project due date for remapping dates"
},
"remap_start_date": {
"type": "boolean",
"description": "Remap start dates"
},
"skip_weekends": {
"type": "boolean",
"description": "Skip weekends when remapping dates"
},
"archived": {
"type": "integer",
"description": "Include archived tasks",
"enum": [
1,
2
]
}
}
}
},
"required": [
"PCID",
"folder_id",
"template_id",
"name"
]
}
clickup_workspaces_create_folder_view
Create Folder View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
columns | object | Yes | — | Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy. |
divide | object | Yes | — | The divide value |
filters | object | Yes | — | The filters value |
grouping | object | Yes | — | The grouping value |
name | string | Yes | — | The name value |
settings | object | Yes | — | The settings value |
sorting | object | Yes | — | The sorting value |
team_sidebar | object | Yes | — | Team Sidebar |
type | string | Yes | — | The type of view to create. Options include: list, board, calendar, table, timeline, workload, activity, map, conversation, or gantt. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
},
"columns": {
"type": "object",
"description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy.",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom Fields require the `cf_` prefix and must be formatted as a JSON object. Example: `cf_eb1234567890-c676-4c10-9012-345678901234`"
}
},
"required": [
"fields"
]
},
"divide": {
"type": "object",
"description": "The divide value",
"properties": {
"field": {
"type": "object",
"description": "The field value"
},
"dir": {
"type": "object",
"description": "The dir value"
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
}
},
"required": [
"collapsed"
]
},
"filters": {
"type": "object",
"description": "The filters value",
"properties": {
"op": {
"type": "string",
"description": "The available operator (`op``) values are `AND`` and `OR``."
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "View the list of [fields available](doc:filter-views) to filter by."
},
"search": {
"type": "string",
"description": "The search value"
},
"show_closed": {
"type": "boolean",
"description": "Show Closed"
}
},
"required": [
"op",
"fields",
"search",
"show_closed"
]
},
"grouping": {
"type": "object",
"description": "The grouping value",
"properties": {
"field": {
"type": "string",
"description": "Set the field to group by.\\ \\ Options include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
},
"dir": {
"type": "integer",
"description": "Set a group sort order using `1` or `-1`.\\ \\ For example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\ \\ Use `-1` to reverse the order to show tasks with no priority at the top of your view."
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
},
"ignore": {
"type": "boolean",
"description": "The ignore value"
}
},
"required": [
"field",
"dir",
"collapsed",
"ignore"
]
},
"name": {
"type": "string",
"description": "The name value"
},
"settings": {
"type": "object",
"description": "The settings value",
"properties": {
"show_task_locations": {
"type": "boolean",
"description": "Show Task Locations"
},
"show_subtasks": {
"type": "integer",
"description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed."
},
"show_subtask_parent_names": {
"type": "boolean",
"description": "Show Subtask Parent Names"
},
"show_closed_subtasks": {
"type": "boolean",
"description": "Show Closed Subtasks"
},
"show_assignees": {
"type": "boolean",
"description": "Show Assignees"
},
"show_images": {
"type": "boolean",
"description": "Show Images"
},
"collapse_empty_columns": {
"type": "string",
"description": "Collapse Empty Columns"
},
"me_comments": {
"type": "boolean",
"description": "Me Comments"
},
"me_subtasks": {
"type": "boolean",
"description": "Me Subtasks"
},
"me_checklists": {
"type": "boolean",
"description": "Me Checklists"
}
},
"required": [
"show_task_locations",
"show_subtasks",
"show_subtask_parent_names",
"show_closed_subtasks",
"show_assignees",
"show_images",
"collapse_empty_columns",
"me_comments",
"me_subtasks",
"me_checklists"
]
},
"sorting": {
"type": "object",
"description": "The sorting value",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Include an array of fields to sort by.\\ \\ You can sort by the same fields available when [filtering a view](doc:filter-views)."
}
},
"required": [
"fields"
]
},
"team_sidebar": {
"type": "object",
"description": "Team Sidebar",
"properties": {
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "The assignees value"
},
"assigned_comments": {
"type": "boolean",
"description": "Assigned Comments"
},
"unassigned_tasks": {
"type": "boolean",
"description": "Unassigned Tasks"
}
},
"required": [
"assignees",
"assigned_comments",
"unassigned_tasks"
]
},
"type": {
"type": "string",
"description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
}
},
"required": [
"PCID",
"folder_id",
"columns",
"divide",
"filters",
"grouping",
"name",
"settings",
"sorting",
"team_sidebar",
"type"
]
}
clickup_workspaces_create_folderless_list
Create Folderless List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
assignee | integer | No | — | Include a user_id to add a List owner. |
content | string | No | — | The content value |
due_date | integer | No | — | Due Date |
due_date_time | boolean | No | — | Due Date Time |
markdown_content | string | No | — | Use markdown_content instead of content to format your List description. |
name | string | Yes | — | The name value |
priority | integer | No | — | The priority value |
status | string | No | — | Status refers to the List color rather than the task Statuses available in the List. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"assignee": {
"type": "integer",
"description": "Include a `user_id` to add a List owner."
},
"content": {
"type": "string",
"description": "The content value"
},
"due_date": {
"type": "integer",
"description": "Due Date"
},
"due_date_time": {
"type": "boolean",
"description": "Due Date Time"
},
"markdown_content": {
"type": "string",
"description": "Use `markdown_content` instead of `content` to format your List description."
},
"name": {
"type": "string",
"description": "The name value"
},
"priority": {
"type": "integer",
"description": "The priority value"
},
"status": {
"type": "string",
"description": "**Status** refers to the List color rather than the task Statuses available in the List."
}
},
"required": [
"PCID",
"space_id",
"name"
]
}
clickup_workspaces_create_list
Create List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
assignee | integer | No | — | Include a user_id to assign this List. |
content | string | No | — | The content value |
due_date | integer | No | — | Due Date |
due_date_time | boolean | No | — | Due Date Time |
markdown_content | string | No | — | Use markdown_content instead of content to format your List description. |
name | string | Yes | — | The name value |
priority | integer | No | — | The priority value |
status | string | No | — | Status refers to the List color rather than the task Statuses available in the List. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
},
"assignee": {
"type": "integer",
"description": "Include a `user_id` to assign this List."
},
"content": {
"type": "string",
"description": "The content value"
},
"due_date": {
"type": "integer",
"description": "Due Date"
},
"due_date_time": {
"type": "boolean",
"description": "Due Date Time"
},
"markdown_content": {
"type": "string",
"description": "Use `markdown_content` instead of `content` to format your List description."
},
"name": {
"type": "string",
"description": "The name value"
},
"priority": {
"type": "integer",
"description": "The priority value"
},
"status": {
"type": "string",
"description": "**Status** refers to the List color rather than the task Statuses available in the List."
}
},
"required": [
"PCID",
"folder_id",
"name"
]
}
clickup_workspaces_create_list_view
Create List View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | List Id |
columns | object | Yes | — | Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy. |
divide | object | Yes | — | The divide value |
filters | object | Yes | — | The filters value |
grouping | object | Yes | — | The grouping value |
name | string | Yes | — | The name value |
settings | object | Yes | — | The settings value |
sorting | object | Yes | — | The sorting value |
team_sidebar | object | Yes | — | Team Sidebar |
type | string | Yes | — | The type of view to create. Options include: list, board, calendar, table, timeline, workload, activity, map, conversation, or gantt. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "List Id"
},
"columns": {
"type": "object",
"description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy.",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom Fields require the `cf_` prefix and must be formatted as a JSON object. Example: `cf_eb1234567890-c676-4c10-9012-345678901234`"
}
},
"required": [
"fields"
]
},
"divide": {
"type": "object",
"description": "The divide value",
"properties": {
"field": {
"type": "object",
"description": "The field value"
},
"dir": {
"type": "object",
"description": "The dir value"
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
}
},
"required": [
"collapsed"
]
},
"filters": {
"type": "object",
"description": "The filters value",
"properties": {
"op": {
"type": "string",
"description": "The available operator (`op``) values are `AND`` and `OR``."
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "View the list of [fields available](doc:filter-views) to filter by."
},
"search": {
"type": "string",
"description": "The search value"
},
"show_closed": {
"type": "boolean",
"description": "Show Closed"
}
},
"required": [
"op",
"fields",
"search",
"show_closed"
]
},
"grouping": {
"type": "object",
"description": "The grouping value",
"properties": {
"field": {
"type": "string",
"description": "Set the field to group by.\\ \\ Options include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
},
"dir": {
"type": "integer",
"description": "Set a group sort order using `1` or `-1`.\\ \\ For example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\ \\ Use `-1` to reverse the order to show tasks with no priority at the top of your view."
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
},
"ignore": {
"type": "boolean",
"description": "The ignore value"
}
},
"required": [
"field",
"dir",
"collapsed",
"ignore"
]
},
"name": {
"type": "string",
"description": "The name value"
},
"settings": {
"type": "object",
"description": "The settings value",
"properties": {
"show_task_locations": {
"type": "boolean",
"description": "Show Task Locations"
},
"show_subtasks": {
"type": "integer",
"description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed."
},
"show_subtask_parent_names": {
"type": "boolean",
"description": "Show Subtask Parent Names"
},
"show_closed_subtasks": {
"type": "boolean",
"description": "Show Closed Subtasks"
},
"show_assignees": {
"type": "boolean",
"description": "Show Assignees"
},
"show_images": {
"type": "boolean",
"description": "Show Images"
},
"collapse_empty_columns": {
"type": "string",
"description": "Collapse Empty Columns"
},
"me_comments": {
"type": "boolean",
"description": "Me Comments"
},
"me_subtasks": {
"type": "boolean",
"description": "Me Subtasks"
},
"me_checklists": {
"type": "boolean",
"description": "Me Checklists"
}
},
"required": [
"show_task_locations",
"show_subtasks",
"show_subtask_parent_names",
"show_closed_subtasks",
"show_assignees",
"show_images",
"collapse_empty_columns",
"me_comments",
"me_subtasks",
"me_checklists"
]
},
"sorting": {
"type": "object",
"description": "The sorting value",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Include an array of fields to sort by.\\ \\ You can sort by the same fields available when [filtering a view](doc:filter-views)."
}
},
"required": [
"fields"
]
},
"team_sidebar": {
"type": "object",
"description": "Team Sidebar",
"properties": {
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "The assignees value"
},
"assigned_comments": {
"type": "boolean",
"description": "Assigned Comments"
},
"unassigned_tasks": {
"type": "boolean",
"description": "Unassigned Tasks"
}
},
"required": [
"assignees",
"assigned_comments",
"unassigned_tasks"
]
},
"type": {
"type": "string",
"description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
}
},
"required": [
"PCID",
"list_id",
"columns",
"divide",
"filters",
"grouping",
"name",
"settings",
"sorting",
"team_sidebar",
"type"
]
}
clickup_workspaces_create_space
Create Space Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
features | object | Yes | — | The features value |
multiple_assignees | boolean | Yes | — | Multiple Assignees |
name | string | Yes | — | The name value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"features": {
"type": "object",
"description": "The features value",
"properties": {
"due_dates": {
"type": "object",
"description": "Due Dates"
},
"time_tracking": {
"type": "object",
"description": "Time Tracking"
},
"tags": {
"type": "object",
"description": "The tags value"
},
"time_estimates": {
"type": "object",
"description": "Time Estimates"
},
"checklists": {
"type": "object",
"description": "The checklists value"
},
"custom_fields": {
"type": "object",
"description": "Custom Fields"
},
"remap_dependencies": {
"type": "object",
"description": "Remap Dependencies"
},
"dependency_warning": {
"type": "object",
"description": "Dependency Warning"
},
"portfolios": {
"type": "object",
"description": "The portfolios value"
}
},
"required": [
"due_dates",
"time_tracking",
"tags",
"time_estimates",
"checklists",
"custom_fields",
"remap_dependencies",
"dependency_warning",
"portfolios"
]
},
"multiple_assignees": {
"type": "boolean",
"description": "Multiple Assignees"
},
"name": {
"type": "string",
"description": "The name value"
}
},
"required": [
"PCID",
"team_id",
"features",
"multiple_assignees",
"name"
]
}
clickup_workspaces_create_space_list_from_template
Create List From Template in Space Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | string | Yes | — | ID of the Space where the List will be created |
template_id | string | Yes | — | ID of the List template to use. Template IDs include a t- prefix (e.g., t-15363293). Retrieve available template IDs using the Get List Templates endpoint. |
name | string | Yes | — | Name of the new List |
options | object | No | — | Options for creating the List |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "string",
"description": "ID of the Space where the List will be created"
},
"template_id": {
"type": "string",
"description": "ID of the List template to use. Template IDs include a `t-` prefix (e.g., `t-15363293`). Retrieve available template IDs using the [Get List Templates](#tag/Templates/operation/GetListTemplates) endpoint."
},
"name": {
"type": "string",
"description": "Name of the new List"
},
"options": {
"type": "object",
"description": "Options for creating the List",
"properties": {
"return_immediately": {
"type": "boolean",
"description": "Flag if newly created Object ID should be returned without waiting for the asset itself and all its nested assets to be applied. If set to true, access checks are performed before returning, but the object might not be fully created yet. In case of a timeout on syncronous requests, the of objects from the template will continue to be created past the timeout."
},
"content": {
"type": "string",
"description": "List description"
},
"time_estimate": {
"type": "number",
"description": "Include time (hours, minutes and seconds)"
},
"automation": {
"type": "boolean",
"description": "Import automation settings"
},
"include_views": {
"type": "boolean",
"description": "Import views"
},
"old_due_date": {
"type": "boolean",
"description": "Import tasks' due dates"
},
"old_start_date": {
"type": "boolean",
"description": "Import tasks' start dates"
},
"old_followers": {
"type": "boolean",
"description": "Import tasks' watchers"
},
"comment_attachments": {
"type": "boolean",
"description": "Import tasks' comment attachments"
},
"recur_settings": {
"type": "boolean",
"description": "Import tasks' recurring settings"
},
"old_tags": {
"type": "boolean",
"description": "Import tasks' tags"
},
"old_statuses": {
"type": "boolean",
"description": "Import tasks' status settings"
},
"subtasks": {
"type": "boolean",
"description": "Import tasks' subtasks"
},
"custom_type": {
"type": "boolean",
"description": "Import tasks' task types"
},
"old_assignees": {
"type": "boolean",
"description": "Import tasks' assignees"
},
"attachments": {
"type": "boolean",
"description": "Import tasks' attachments"
},
"comment": {
"type": "boolean",
"description": "Import tasks' comments"
},
"old_status": {
"type": "boolean",
"description": "Import tasks' current statuses"
},
"external_dependencies": {
"type": "boolean",
"description": "Import tasks' external dependencies"
},
"internal_dependencies": {
"type": "boolean",
"description": "Import tasks' internal dependencies"
},
"priority": {
"type": "boolean",
"description": "Import tasks' priorities"
},
"custom_fields": {
"type": "boolean",
"description": "Import tasks' Custom Fields"
},
"old_checklists": {
"type": "boolean",
"description": "Import tasks' checklists"
},
"relationships": {
"type": "boolean",
"description": "Import tasks' relationships"
},
"old_subtask_assignees": {
"type": "boolean",
"description": "Import tasks' subtask assignees"
},
"start_date": {
"type": "string",
"description": "Project start date for remapping dates"
},
"due_date": {
"type": "string",
"description": "Project due date for remapping dates"
},
"remap_start_date": {
"type": "boolean",
"description": "Remap start dates"
},
"skip_weekends": {
"type": "boolean",
"description": "Skip weekends when remapping dates"
},
"archived": {
"type": "integer",
"description": "Include archived tasks",
"enum": [
1,
2
]
}
}
}
},
"required": [
"PCID",
"space_id",
"template_id",
"name"
]
}
clickup_workspaces_create_space_view
Create Space View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
columns | object | Yes | — | Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy. |
divide | object | Yes | — | The divide value |
filters | object | Yes | — | The filters value |
grouping | object | Yes | — | The grouping value |
name | string | Yes | — | The name value |
settings | object | Yes | — | The settings value |
sorting | object | Yes | — | The sorting value |
team_sidebar | object | Yes | — | Team Sidebar |
type | string | Yes | — | The type of view to create. Options include: list, board, calendar, table, timeline, workload, activity, map, conversation, or gantt. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"columns": {
"type": "object",
"description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy.",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom Fields require the `cf_` prefix and must be formatted as a JSON object. Example: `cf_eb1234567890-c676-4c10-9012-345678901234`"
}
},
"required": [
"fields"
]
},
"divide": {
"type": "object",
"description": "The divide value",
"properties": {
"field": {
"type": "object",
"description": "The field value"
},
"dir": {
"type": "object",
"description": "The dir value"
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
}
},
"required": [
"collapsed"
]
},
"filters": {
"type": "object",
"description": "The filters value",
"properties": {
"op": {
"type": "string",
"description": "The available operator (`op``) values are `AND`` and `OR``."
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "View the list of [fields available](doc:filter-views) to filter by."
},
"search": {
"type": "string",
"description": "The search value"
},
"show_closed": {
"type": "boolean",
"description": "Show Closed"
}
},
"required": [
"op",
"fields",
"search",
"show_closed"
]
},
"grouping": {
"type": "object",
"description": "The grouping value",
"properties": {
"field": {
"type": "string",
"description": "Set the field to group by.\\ \\ Options include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
},
"dir": {
"type": "integer",
"description": "Set a group sort order using `1` or `-1`.\\ \\ For example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\ \\ Use `-1` to reverse the order to show tasks with no priority at the top of your view."
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
},
"ignore": {
"type": "boolean",
"description": "The ignore value"
}
},
"required": [
"field",
"dir",
"collapsed",
"ignore"
]
},
"name": {
"type": "string",
"description": "The name value"
},
"settings": {
"type": "object",
"description": "The settings value",
"properties": {
"show_task_locations": {
"type": "boolean",
"description": "Show Task Locations"
},
"show_subtasks": {
"type": "integer",
"description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed."
},
"show_subtask_parent_names": {
"type": "boolean",
"description": "Show Subtask Parent Names"
},
"show_closed_subtasks": {
"type": "boolean",
"description": "Show Closed Subtasks"
},
"show_assignees": {
"type": "boolean",
"description": "Show Assignees"
},
"show_images": {
"type": "boolean",
"description": "Show Images"
},
"collapse_empty_columns": {
"type": "string",
"description": "Collapse Empty Columns"
},
"me_comments": {
"type": "boolean",
"description": "Me Comments"
},
"me_subtasks": {
"type": "boolean",
"description": "Me Subtasks"
},
"me_checklists": {
"type": "boolean",
"description": "Me Checklists"
}
},
"required": [
"show_task_locations",
"show_subtasks",
"show_subtask_parent_names",
"show_closed_subtasks",
"show_assignees",
"show_images",
"collapse_empty_columns",
"me_comments",
"me_subtasks",
"me_checklists"
]
},
"sorting": {
"type": "object",
"description": "The sorting value",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Include an array of fields to sort by.\\ \\ You can sort by the same fields available when [filtering a view](doc:filter-views)."
}
},
"required": [
"fields"
]
},
"team_sidebar": {
"type": "object",
"description": "Team Sidebar",
"properties": {
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "The assignees value"
},
"assigned_comments": {
"type": "boolean",
"description": "Assigned Comments"
},
"unassigned_tasks": {
"type": "boolean",
"description": "Unassigned Tasks"
}
},
"required": [
"assignees",
"assigned_comments",
"unassigned_tasks"
]
},
"type": {
"type": "string",
"description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
}
},
"required": [
"PCID",
"space_id",
"columns",
"divide",
"filters",
"grouping",
"name",
"settings",
"sorting",
"team_sidebar",
"type"
]
}
clickup_workspaces_create_team_view
Create Workspace (Everything level) View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
columns | object | Yes | — | Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy. |
divide | object | Yes | — | The divide value |
filters | object | Yes | — | The filters value |
grouping | object | Yes | — | The grouping value |
name | string | Yes | — | The name value |
settings | object | Yes | — | The settings value |
sorting | object | Yes | — | The sorting value |
team_sidebar | object | Yes | — | Team Sidebar |
type | string | Yes | — | The type of view to create. Options include: list, board, calendar, table, timeline, workload, activity, map, conversation, or gantt. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"columns": {
"type": "object",
"description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy.",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom Fields require the `cf_` prefix and must be formatted as a JSON object. Example: `cf_eb1234567890-c676-4c10-9012-345678901234`"
}
},
"required": [
"fields"
]
},
"divide": {
"type": "object",
"description": "The divide value",
"properties": {
"field": {
"type": "object",
"description": "The field value"
},
"dir": {
"type": "object",
"description": "The dir value"
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
}
},
"required": [
"collapsed"
]
},
"filters": {
"type": "object",
"description": "The filters value",
"properties": {
"op": {
"type": "string",
"description": "The available operator (`op``) values are `AND`` and `OR``."
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "View the list of [fields available](doc:filter-views) to filter by."
},
"search": {
"type": "string",
"description": "The search value"
},
"show_closed": {
"type": "boolean",
"description": "Show Closed"
}
},
"required": [
"op",
"fields",
"search",
"show_closed"
]
},
"grouping": {
"type": "object",
"description": "The grouping value",
"properties": {
"field": {
"type": "string",
"description": "Set the field to group by.\\ \\ Options include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
},
"dir": {
"type": "integer",
"description": "Set a group sort order using `1` or `-1`.\\ \\ For example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\ \\ Use `-1` to reverse the order to show tasks with no priority at the top of your view."
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
},
"ignore": {
"type": "boolean",
"description": "The ignore value"
}
},
"required": [
"field",
"dir",
"collapsed",
"ignore"
]
},
"name": {
"type": "string",
"description": "The name value"
},
"settings": {
"type": "object",
"description": "The settings value",
"properties": {
"show_task_locations": {
"type": "boolean",
"description": "Show Task Locations"
},
"show_subtasks": {
"type": "integer",
"description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed."
},
"show_subtask_parent_names": {
"type": "boolean",
"description": "Show Subtask Parent Names"
},
"show_closed_subtasks": {
"type": "boolean",
"description": "Show Closed Subtasks"
},
"show_assignees": {
"type": "boolean",
"description": "Show Assignees"
},
"show_images": {
"type": "boolean",
"description": "Show Images"
},
"collapse_empty_columns": {
"type": "string",
"description": "Collapse Empty Columns"
},
"me_comments": {
"type": "boolean",
"description": "Me Comments"
},
"me_subtasks": {
"type": "boolean",
"description": "Me Subtasks"
},
"me_checklists": {
"type": "boolean",
"description": "Me Checklists"
}
},
"required": [
"show_task_locations",
"show_subtasks",
"show_subtask_parent_names",
"show_closed_subtasks",
"show_assignees",
"show_images",
"collapse_empty_columns",
"me_comments",
"me_subtasks",
"me_checklists"
]
},
"sorting": {
"type": "object",
"description": "The sorting value",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Include an array of fields to sort by.\\ \\ You can sort by the same fields available when [filtering a view](doc:filter-views)."
}
},
"required": [
"fields"
]
},
"team_sidebar": {
"type": "object",
"description": "Team Sidebar",
"properties": {
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "The assignees value"
},
"assigned_comments": {
"type": "boolean",
"description": "Assigned Comments"
},
"unassigned_tasks": {
"type": "boolean",
"description": "Unassigned Tasks"
}
},
"required": [
"assignees",
"assigned_comments",
"unassigned_tasks"
]
},
"type": {
"type": "string",
"description": "The type of view to create. Options include: `list`, `board`, `calendar`, `table`, `timeline`, `workload`, `activity`, `map`, `conversation`, or `gantt`."
}
},
"required": [
"PCID",
"team_id",
"columns",
"divide",
"filters",
"grouping",
"name",
"settings",
"sorting",
"team_sidebar",
"type"
]
}
clickup_workspaces_delete_folder
Delete Folder Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
}
},
"required": [
"PCID",
"folder_id"
]
}
clickup_workspaces_delete_list
Delete List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | List Id |
Content-Type | string | Yes | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "List Id"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID",
"list_id",
"Content-Type"
]
}
clickup_workspaces_delete_space
Delete Space Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_delete_view
Delete View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
view_id | string | Yes | — | 105 (string) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"view_id": {
"type": "string",
"description": "105 (string)"
}
},
"required": [
"PCID",
"view_id"
]
}
clickup_workspaces_get_authorized_teams
Get Authorized WorkspacesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
clickup_workspaces_get_folder
Get Folder Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
}
},
"required": [
"PCID",
"folder_id"
]
}
clickup_workspaces_get_folder_templates
Get Folder Templates Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
Content-Type | string | Yes | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID",
"team_id",
"Content-Type"
]
}
clickup_workspaces_get_folder_views
Get Folder Views Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
}
},
"required": [
"PCID",
"folder_id"
]
}
clickup_workspaces_get_folderless_lists
Get Folderless Lists Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
archived | boolean | No | — | The archived value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"archived": {
"type": "boolean",
"description": "The archived value"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_get_folders
Get Folders Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
archived | boolean | No | — | The archived value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"archived": {
"type": "boolean",
"description": "The archived value"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_get_list
Get List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | The List ID. To find the List ID, right-click the List in your Sidebar, select Copy link, and paste the link in your URL. The last string in the URL is your List ID. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "The List ID. To find the List ID, right-click the List in your Sidebar, select Copy link, and paste the link in your URL. The last string in the URL is your List ID."
}
},
"required": [
"PCID",
"list_id"
]
}
clickup_workspaces_get_list_templates
Get List Templates Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
Content-Type | string | Yes | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID",
"team_id",
"Content-Type"
]
}
clickup_workspaces_get_list_views
Get List Views Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | List Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "List Id"
}
},
"required": [
"PCID",
"list_id"
]
}
clickup_workspaces_get_lists
Get Lists Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
archived | boolean | No | — | The archived value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
},
"archived": {
"type": "boolean",
"description": "The archived value"
}
},
"required": [
"PCID",
"folder_id"
]
}
clickup_workspaces_get_space
Get Space Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_get_space_views
Get Space Views Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_get_spaces
Get Spaces Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
archived | boolean | No | — | The archived value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"archived": {
"type": "boolean",
"description": "The archived value"
}
},
"required": [
"PCID",
"team_id"
]
}
clickup_workspaces_get_task_templates
Get Task Templates Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
page | integer | Yes | — | Page number for pagination |
Content-Type | string | Yes | — | The content-type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
},
"page": {
"type": "integer",
"description": "Page number for pagination"
},
"Content-Type": {
"type": "string",
"description": "The content-type value"
}
},
"required": [
"PCID",
"team_id",
"page",
"Content-Type"
]
}
clickup_workspaces_get_team_views
Get Workspace (Everything level) Views Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
}
},
"required": [
"PCID",
"team_id"
]
}
clickup_workspaces_get_view
Get View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
view_id | string | Yes | — | View Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"view_id": {
"type": "string",
"description": "View Id"
}
},
"required": [
"PCID",
"view_id"
]
}
clickup_workspaces_get_view_tasks
Get View Tasks Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
view_id | string | Yes | — | 105 (string) |
page | integer | Yes | — | Page number for pagination |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"view_id": {
"type": "string",
"description": "105 (string)"
},
"page": {
"type": "integer",
"description": "Page number for pagination"
}
},
"required": [
"PCID",
"view_id",
"page"
]
}
clickup_workspaces_get_workspaceplan
Get Workspace Plan Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | string | Yes | — | Workspace ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "string",
"description": "Workspace ID"
}
},
"required": [
"PCID",
"team_id"
]
}
clickup_workspaces_get_workspaceseats
Get Workspace seats Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | string | Yes | — | Workspace ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "string",
"description": "Workspace ID"
}
},
"required": [
"PCID",
"team_id"
]
}
clickup_workspaces_remove_task_from_list
Remove Task From List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | number | Yes | — | List Id |
task_id | string | Yes | — | Task Id |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "number",
"description": "List Id"
},
"task_id": {
"type": "string",
"description": "Task Id"
}
},
"required": [
"PCID",
"list_id",
"task_id"
]
}
clickup_workspaces_shared_hierarchy
Shared Hierarchy Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
team_id | number | Yes | — | Workspace ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"team_id": {
"type": "number",
"description": "Workspace ID"
}
},
"required": [
"PCID",
"team_id"
]
}
clickup_workspaces_update_folder
Update Folder Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | number | Yes | — | Folder Id |
name | string | Yes | — | The name value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "number",
"description": "Folder Id"
},
"name": {
"type": "string",
"description": "The name value"
}
},
"required": [
"PCID",
"folder_id",
"name"
]
}
clickup_workspaces_update_list
Update List Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
list_id | string | Yes | — | List Id |
assignee | string | No | — | The assignee value |
content | string | No | — | The content value |
due_date | integer | No | — | Due Date |
due_date_time | boolean | No | — | Due Date Time |
markdown_content | string | No | — | Use markdown_content instead of content to format your List description. |
name | string | No | — | The name value |
priority | integer | No | — | The priority value |
status | string | No | — | Status refers to the List color rather than the task Statuses available in the List. |
unset_status | boolean | No | — | By default, this is false. To remove the List color use unset_status: true. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"list_id": {
"type": "string",
"description": "List Id"
},
"assignee": {
"type": "string",
"description": "The assignee value"
},
"content": {
"type": "string",
"description": "The content value"
},
"due_date": {
"type": "integer",
"description": "Due Date"
},
"due_date_time": {
"type": "boolean",
"description": "Due Date Time"
},
"markdown_content": {
"type": "string",
"description": "Use `markdown_content` instead of `content` to format your List description."
},
"name": {
"type": "string",
"description": "The name value"
},
"priority": {
"type": "integer",
"description": "The priority value"
},
"status": {
"type": "string",
"description": "**Status** refers to the List color rather than the task Statuses available in the List."
},
"unset_status": {
"type": "boolean",
"description": "By default, this is `false.` To remove the List color use `unset_status: true`."
}
},
"required": [
"PCID",
"list_id"
]
}
clickup_workspaces_update_space
Update Space Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
space_id | number | Yes | — | Space Id |
admin_can_manage | boolean | No | — | Note: Allowing or restricting admins from managing private Spaces using "admin_can_manage" is an Enterprise Plan feature. |
color | string | No | — | The color value |
features | object | No | — | The features value |
multiple_assignees | boolean | No | — | Multiple Assignees |
name | string | No | — | The name value |
private | boolean | No | — | The private value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"space_id": {
"type": "number",
"description": "Space Id"
},
"admin_can_manage": {
"type": "boolean",
"description": "***Note:** Allowing or restricting admins from managing private Spaces using `\"admin_can_manage\"` is an [Enterprise Plan](https://clickup.com/pricing) feature.*"
},
"color": {
"type": "string",
"description": "The color value"
},
"features": {
"type": "object",
"description": "The features value",
"properties": {
"due_dates": {
"type": "object",
"description": "Due Dates"
},
"time_tracking": {
"type": "object",
"description": "Time Tracking"
},
"tags": {
"type": "object",
"description": "The tags value"
},
"time_estimates": {
"type": "object",
"description": "Time Estimates"
},
"checklists": {
"type": "object",
"description": "The checklists value"
},
"custom_fields": {
"type": "object",
"description": "Custom Fields"
},
"remap_dependencies": {
"type": "object",
"description": "Remap Dependencies"
},
"dependency_warning": {
"type": "object",
"description": "Dependency Warning"
},
"portfolios": {
"type": "object",
"description": "The portfolios value"
}
},
"required": [
"due_dates",
"time_tracking",
"tags",
"time_estimates",
"checklists",
"custom_fields",
"remap_dependencies",
"dependency_warning",
"portfolios"
]
},
"multiple_assignees": {
"type": "boolean",
"description": "Multiple Assignees"
},
"name": {
"type": "string",
"description": "The name value"
},
"private": {
"type": "boolean",
"description": "The private value"
}
},
"required": [
"PCID",
"space_id"
]
}
clickup_workspaces_update_view
Update View Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
view_id | string | Yes | — | View Id |
columns | object | No | — | Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy. |
divide | object | No | — | The divide value |
filters | object | No | — | The filters value |
grouping | object | No | — | The grouping value |
name | string | No | — | The name value |
parent | object | No | — | The parent parameter specifies where the view is located in the ClickUp Hierarchy. Both id and type are required. \ \ The id is the id of the Workspace, Space, Folder, or List where the view is located. \ \ The type value indciates the level of the Hierarchy where the view is located. |
settings | object | No | — | The settings value |
sorting | object | No | — | The sorting value |
team_sidebar | object | No | — | Team Sidebar |
type | string | No | — | The type value |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"view_id": {
"type": "string",
"description": "View Id"
},
"columns": {
"type": "object",
"description": "Custom Fields added to a view at the Everything level will be added to all tasks in your Workspace. Once Custom Fields are added to one of these views, you cannot move it to another level of the Hierarchy.",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Custom Fields require the `cf_` prefix and must be formatted as a JSON object. Example: `cf_eb1234567890-c676-4c10-9012-345678901234`"
}
},
"required": [
"fields"
]
},
"divide": {
"type": "object",
"description": "The divide value",
"properties": {
"field": {
"type": "object",
"description": "The field value"
},
"dir": {
"type": "object",
"description": "The dir value"
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
}
},
"required": [
"collapsed"
]
},
"filters": {
"type": "object",
"description": "The filters value",
"properties": {
"op": {
"type": "string",
"description": "The available operator (`op``) values are `AND`` and `OR``."
},
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "View the list of [fields available](doc:filter-views) to filter by."
},
"search": {
"type": "string",
"description": "The search value"
},
"show_closed": {
"type": "boolean",
"description": "Show Closed"
}
},
"required": [
"op",
"fields",
"search",
"show_closed"
]
},
"grouping": {
"type": "object",
"description": "The grouping value",
"properties": {
"field": {
"type": "string",
"description": "Set the field to group by.\\ \\ Options include: `none`, `status`, `priority`, `assignee`, `tag`, or `dueDate`."
},
"dir": {
"type": "integer",
"description": "Set a group sort order using `1` or `-1`.\\ \\ For example, use `1`show tasks with urgent priority at the top of your view, and tasks with no priority at the bottom.\\ \\ Use `-1` to reverse the order to show tasks with no priority at the top of your view."
},
"collapsed": {
"type": "array",
"items": {
"type": "string"
},
"description": "The collapsed value"
},
"ignore": {
"type": "boolean",
"description": "The ignore value"
}
},
"required": [
"field",
"dir",
"collapsed",
"ignore"
]
},
"name": {
"type": "string",
"description": "The name value"
},
"parent": {
"type": "object",
"description": "The parent parameter specifies where the view is located in the ClickUp Hierarchy. Both `id` and `type` are required. \\ \\ The `id` is the id of the Workspace, Space, Folder, or List where the view is located. \\ \\ The `type` value indciates the level of the Hierarchy where the view is located.",
"properties": {
"id": {
"type": "string",
"description": "The id of the Workspace, Space, Folder, or List where the view is located."
},
"type": {
"type": "integer",
"description": "The level of the Hierarchy where the view is created. \\ \\ Options include: \\ \\ Workspace (Everything Level): `7` \\ \\ Space: `4` \\ \\ Folder: `5` \\ \\ List: `6`"
}
},
"required": [
"id",
"type"
]
},
"settings": {
"type": "object",
"description": "The settings value",
"properties": {
"show_task_locations": {
"type": "boolean",
"description": "Show Task Locations"
},
"show_subtasks": {
"type": "integer",
"description": "Acceptable values are `1`, `2`, or `3`, which show subtasks separate, expanded, or collapsed."
},
"show_subtask_parent_names": {
"type": "boolean",
"description": "Show Subtask Parent Names"
},
"show_closed_subtasks": {
"type": "boolean",
"description": "Show Closed Subtasks"
},
"show_assignees": {
"type": "boolean",
"description": "Show Assignees"
},
"show_images": {
"type": "boolean",
"description": "Show Images"
},
"collapse_empty_columns": {
"type": "string",
"description": "Collapse Empty Columns"
},
"me_comments": {
"type": "boolean",
"description": "Me Comments"
},
"me_subtasks": {
"type": "boolean",
"description": "Me Subtasks"
},
"me_checklists": {
"type": "boolean",
"description": "Me Checklists"
}
},
"required": [
"show_task_locations",
"show_subtasks",
"show_subtask_parent_names",
"show_closed_subtasks",
"show_assignees",
"show_images",
"collapse_empty_columns",
"me_comments",
"me_subtasks",
"me_checklists"
]
},
"sorting": {
"type": "object",
"description": "The sorting value",
"properties": {
"fields": {
"type": "array",
"items": {
"type": "string"
},
"description": "Include an array of fields to sort by.\\ \\ You can sort by the same fields available when [filtering a view](doc:filter-views)."
}
},
"required": [
"fields"
]
},
"team_sidebar": {
"type": "object",
"description": "Team Sidebar",
"properties": {
"assignees": {
"type": "array",
"items": {
"type": "string"
},
"description": "The assignees value"
},
"assigned_comments": {
"type": "boolean",
"description": "Assigned Comments"
},
"unassigned_tasks": {
"type": "boolean",
"description": "Unassigned Tasks"
}
},
"required": [
"assignees",
"assigned_comments",
"unassigned_tasks"
]
},
"type": {
"type": "string",
"description": "The type value"
}
},
"required": [
"PCID",
"view_id"
]
}

