Questions tagged [clickup-api]

For questions about using the ClickUp REST API.

The ClickUp API is a way to interact with ClickUp suite of work management tools.

16 questions
5
votes
1 answer

Clickup get tasks by status in list

I want to retrieve tasks in a specified status from a list in Clickup but I keep getting an empty response. Resources - https://jsapi.apiary.io/apis/clickup20/reference/0/tasks/get-tasks.html In the api documentation, it says you can query by status…
jdavis
  • 429
  • 6
  • 16
3
votes
2 answers

Using my personal clickup token to make a clickup api call from Google Apps Script

function getClickupTeam() { let response = UrlFetchApp.fetch(clickupUrl + "team", { "method": "GET", "Authorization": clickupToken, "muteHttpExceptions": true }) Logger.log(response) let json = JSON.parse(response); …
jdavis
  • 429
  • 6
  • 16
2
votes
1 answer

How do I get all closed tasks from a list using the ClickUp API?

I'm trying to get a list of completed tasks from a given list in a folder from the ClickUp API. I want tasks that have a status called complete. The problem is, one task is being returned, but I know there are 40. I know I have the right list ID…
Tim Post
  • 33,371
  • 15
  • 110
  • 174
2
votes
2 answers

Why my clickup create task api call is not working?

url : https://private-anon-4e46c952c5-clickup20.apiary-mock.com/api/v2/list/11825158/task headers: { 'Authorization': 'pk_3595428_OWNkeyyyy', 'Content-Type': 'application/json' }, Body { "name": "New Task created by apu", …
Aavesh
  • 94
  • 8
1
vote
0 answers

How to create a recurring task in ClickUp via API?

ClickUp allows us to create recurring tasks (as I show in the attached screenshot), for example, that figure due date every week on Tuesday. I would like to know if we can create a recurring task in ClickUp through API. And if possible how is it…
user4895
  • 11
  • 2
1
vote
0 answers

How can I create a form, and create a task on a ClickUp task

For few days I am trying to use the ClickUp API. The goal is: We have a form, and when the form is submitted, it creates a task on a space on ClickUp. It is a PHP form, and even with the API Doc here, I am not able to understand how it is working.…
Yanis Abt
  • 11
  • 3
0
votes
1 answer

How to get a list of overdue tasks per person via the clickup API

1. Straightforward approach If to check the dev tools in the Clickup app, there's a request https://app.clickup.com/home/team/{team_id}/inbox with payload {userid: user_id, overdue_only: true, sort_by: "dueDate", sort_dir: -1, reminder_position:…
Vitalii Vasylenko
  • 4,776
  • 5
  • 40
  • 64
0
votes
1 answer

List all folders from ClickUp space

I'm trying to list all folders created under particular ClickUp space, but it's not giving me desired result. Below is the snippet, import requests # Enter your ClickUp API token here api_token = 'pk_xxxxxxxxxxx' # Space ID for the desired…
Rahul
  • 402
  • 2
  • 9
  • 23
0
votes
0 answers

Can I aggregate work time for each user and for each tag using ClickUp?

I'm using ClickUp and want to aggregate each members working time with their tags both daily and weekly. Ideal goal→ User A's working time in a day: Tag A 4 hours Tag B 2.5 hours Tag C 1.5 hous User A's working time in a week: Tag A 16hours Tag B…
0
votes
1 answer

How to comment on clickup with python?

I want to comment on a specific task in clickup but it responses 401 error. url = "https://api.clickup.com/api/v2/task/861m8wtw3/comment" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } # comment =…
Sadegh Pouriyan
  • 157
  • 1
  • 10
0
votes
0 answers

How to create an Integromat scenario to integrate ClickUp and Dropbox?

A task is created in a “Company Name” list in ClickUp. Task has the following pattern in its name - “NameA, NameB & NameC” and the due date Upon creating the task, a catalog structure in Dropbox is created (see catalog structure below) Date in the…
Anne
  • 1
  • 1
0
votes
2 answers

Why am i facing ReferenceError: URLSearchParams is not defined?

I am trying to get time entries through ClickUp API using the google apps scripts. function getTime() { const query = new URLSearchParams({ start_date: '0', end_date: '0', assignee: '0', include_task_tags: 'true', include_location_names:…
OZi
  • 3
  • 3
0
votes
1 answer

Why does this task update on ClickUp show 200 as response, but the update doesn't occur using GAS?

Their documentation example requires certain fields to be in the update body, but these values aren't always available. I've checked some instructions and this, for example, says that you only need to pass the one that you want to update, which is…
onit
  • 2,275
  • 11
  • 25
0
votes
0 answers

How to detect when a new task is created with Clickup API

Zappier is a little limited so I will adapt clickupython( https://github.com/Imzachjohnson/clickupython) to my needs, and I would like to know what is the proper way to trigger an event when a new task is created, what I think I could do is to…
0
votes
1 answer

Fetch Json data from API and instert it as a wordpress page

so I am working with Clickup API, there we have a number of lists we would like to fetch the data from and insert that data as a wordpress post for our website. I have tested all the API requests with Postman and the data i get back is similar to…
1
2