2026-01-06 03:39:25 -08:00
|
|
|
---
|
|
|
|
|
title: ClickUp
|
|
|
|
|
description: Connect your ClickUp workspace to SurfSense
|
|
|
|
|
---
|
|
|
|
|
|
2026-01-07 20:40:54 -08:00
|
|
|
# ClickUp OAuth Integration Setup Guide
|
|
|
|
|
|
|
|
|
|
This guide walks you through setting up a ClickUp OAuth integration for SurfSense.
|
|
|
|
|
|
|
|
|
|
## Step 1: Access ClickUp API Settings
|
|
|
|
|
|
|
|
|
|
1. Open your ClickUp workspace
|
|
|
|
|
2. Navigate to **Settings** (gear icon) → **ClickUp API**
|
|
|
|
|
3. You'll see the **ClickUp API Settings** page
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
## Step 2: Create an App
|
|
|
|
|
|
|
|
|
|
1. Click **"+ Create an App"** in the top-right corner
|
|
|
|
|
2. Fill in the app details:
|
|
|
|
|
|
|
|
|
|
| Field | Value |
|
|
|
|
|
|-------|-------|
|
|
|
|
|
| **App Name** | `SurfSense` |
|
|
|
|
|
| **Redirect URL(s)** | `localhost:8000` |
|
|
|
|
|
|
|
|
|
|
3. Click **"Save"** to create the app
|
|
|
|
|
|
|
|
|
|

|
|
|
|
|
|
|
|
|
|
## Step 3: Get OAuth Credentials
|
|
|
|
|
|
|
|
|
|
After creating the app, you'll see your credentials:
|
|
|
|
|
|
|
|
|
|
1. Copy your **Client ID**
|
|
|
|
|
2. Copy your **Client Secret** (click "Show" to reveal, or "Regenerate" if needed)
|
|
|
|
|
|
2026-01-24 22:43:04 +05:30
|
|
|
<Callout type="warn">
|
|
|
|
|
Never share your client secret publicly.
|
|
|
|
|
</Callout>
|
2026-01-07 20:40:54 -08:00
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Running SurfSense with ClickUp Connector
|
|
|
|
|
|
2026-02-26 19:24:55 +05:30
|
|
|
Add the ClickUp credentials to your `.env` file (created during [Docker installation](/docs/docker-installation)):
|
2026-01-07 20:40:54 -08:00
|
|
|
|
|
|
|
|
```bash
|
2026-02-26 19:24:55 +05:30
|
|
|
CLICKUP_CLIENT_ID=your_clickup_client_id
|
|
|
|
|
CLICKUP_CLIENT_SECRET=your_clickup_client_secret
|
|
|
|
|
CLICKUP_REDIRECT_URI=http://localhost:8000/api/v1/auth/clickup/connector/callback
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Then restart the services:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
docker compose up -d
|
2026-01-07 20:40:54 -08:00
|
|
|
```
|