Procedures
Automation procedures in the ClickUp book.
Ensure that you have installed or connected the ClickUp book and created a new playground before using these automation procedures.
to create a (task) in a (list)
Creates a new task in a list
Input Concepts
Output Concepts
Examples
Create a task in a list
get a list from "https://app.clickup.com/123/v/li/123"
use the above as the project
>>>
the string is '{"name": "New Bug found", "description": "A new bug was found, lets fix it"}'
get the string as json
use the above as the new bug
>>>
create a task in the project
the task input is the new bugto get a (list) from (list url)
Gets a list from its url
Input Concepts
list url
The URL of the list
text
Yes
(no default)
Output Concepts
Examples
Get a list from a url
get a list from "https://app.clickup.com/123/v/li/123"to get some (list's tasks)
Gets all tasks in a list
Input Concepts
Output Concepts
Examples
Get all tasks in a list
get a list from "https://app.clickup.com/123/v/li/123"
use the above as the project
>>>
get the project's tasksGet a task by name from a list
...
get the project's task whose name is "Task with Different Assignee"Get tasks in a given status from a list
...
get the project's tasks whose status is "in progress"to get some (list's users)
Gets the users that have access to a list
Input Concepts
Output Concepts
Examples
Get all users in a list
get a list from "https://app.clickup.com/123/v/li/123"
use the above as the project
>>>
get the project's usersGet a user by name from a list
...
get the project's user whose name is "Integration User"to update a (task)
Updates an existing task in ClickUp
Input Concepts
Output Concepts
Examples
Update a task
...
use the above as the new task
>>>
the new task's status is "in progress"
>>>
update the new taskLast updated
Was this helpful?
