logo
Connectors

ClickUp

Integrate ClickUp workspace with AINexLayer

ClickUp OAuth Integration Guide

This guide explains how to set up a ClickUp OAuth integration for AINexLayer.

Step 1: Accessing 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

ClickUp API Settings Page

Step 2: Creating an App

  1. Click "+ Create an App" in the top-right corner
  2. Fill in the app details:
FieldValue
App NameAINexLayer
Redirect URL(s)localhost:8000
  1. Click "Save" to create the app

App Created with Credentials

Step 3: Obtaining 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)

Never share your client secret publicly.


Deploying AINexLayer with ClickUp Connector

Add the ClickUp credentials to your .env file (created during Docker installation):

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:

docker compose up -d

On this page