clickupForGoogleAppsScript is a library that uses Clickup API in Google Apps Script.
Clickup API docs: https://clickup.com/api
- Tasks
- Teams
- Open the script editor.
- Select a library from the resource menu.
- Enter
1C7AvL6vODVFQTZKS2OvnPsTqoU9Si0nQDCbz7BNF46t8TrRLZIEp7bmMin the input field of "Add a library". - Click the "Add" button.
- Select the latest version.
- Click the "Save" button.
// Get Clickup object from library using Clickup personal API token
const clickup = Clickup.getClickup("Enter your Clickup personal API token");
// Get task from task id.
const task = clickup.Tasks.getTaskByTaskId("Enter task id");
// Get tasks from list id.
const tasks = clickup.Tasks.getTasksByListId("Enter list id");
// Get your teams.
const teams = clickup.Teams.getTeams();- namahu
- MIT