Note: You’ll need to create a new ClickUp app if you don’t already have one.
You can find your ClickUp app credentials by visiting your ClickUp Integrations Portal.You’ll need the following information to set up your ClickUp App with Paragon Connect:
Under Integrations > Connected Integrations > ClickUp > App Configuration > Configure, fill out your credentials from the end of Step 1 in their respective sections:
Client ID:
Log in to your ClickUp dashboard.
Select “Settings” from the sidebar.
Under Integrations > ClickUp API, select your application.
Copy the Client ID from “Client ID”.
Client Secret:
Log in to your ClickUp dashboard.
Select “Settings” from the sidebar.
Under Integrations > ClickUp API, select your application.
Copy the Client Secret from “Client Secret”.
Press the purple “Save Changes” button to save your credentials.
Note: Leaving the Client ID and Client Secret blank will use Paragon development keys.
Once your users have connected their ClickUp account, you can use the Paragon SDK to access the ClickUp API on behalf of connected users.See the ClickUp REST API documentation for their full API reference.Any ClickUp API endpoints can be accessed with the Paragon SDK as shown in this example.
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration// Authenticate the userparagon.authenticate(<ProjectId>, <UserToken>);// Get current team informationawait paragon.request("clickup", "/team", { method: "GET"});// Get lists outside of foldersawait paragon.request("clickup", "/space/<Space ID>/list?archived=false", { method: "GET"});// Create task in listawait paragon.request("clickup", "/list/<List ID>/task", { method: "POST", body: { name: "New Task Name", description: "New Task Description", status: "Open" }});
Webhook triggers can be used to run workflows based on events in your users’ ClickUp account. For example, you might want to trigger a workflow whenever new tasks are created in ClickUp to sync your users’ ClickUp tasks to your application in real-time.You can find the full list of Webhook Triggers for ClickUp below: