Skip to main content

flyteplugins-clickup

Receive ClickUp webhooks in Flyte.

pip install "flyteplugins-clickup[app]"

Using it

Hand a ClickUpProvider() to a WebhookAppEnvironment and register handlers with the typed constants in events:

import flyte
from flyte.extras.webhooks import WebhookAppEnvironment, run_once
from flyteplugins.clickup import ClickUpProvider, events

# ClickUpProvider.default_secret_env is mounted for you.
app_env = WebhookAppEnvironment(name="clickup-webhooks", providers=[ClickUpProvider()])


@app_env.on_event(events.Task.STATUS_UPDATED)
async def handle(event):
    import flyte.remote as remote

    task = remote.Task.get(name="my-env.my_task", auto_version="latest")
    result = await run_once.aio(task, key=event.dedupe_key(), resource=event.resource_id)
    if not result.created:
        return {"skipped": result.run.name, "url": result.run.url}
    return {"run": result.run.name}


flyte.serve(app_env)

Handlers must await run_once.aio(...). The blocking form stalls the app's event loop, and ClickUp times deliveries out in seconds.

One app can serve several products at once — hand it one provider per product.

Try it

examples/clickup_webhooks.py runs two ways. The first needs no ClickUp account:

python examples/clickup_webhooks.py --local   # replay a real sample delivery in-process
python examples/clickup_webhooks.py           # deploy the receiver to Flyte

--local posts this plugin's SAMPLE_DELIVERY through the app with FastAPI's test client, so you see a delivery verified, normalized, and dispatched — plus an unsigned one refused with a 401, and the same delivery replayed to show the dedupe key is stable.

Setup

  1. Store the secret and mount it on the app:
    flyte create secret CLICKUP_WEBHOOK_SECRET --value <secret>
    
  2. Point ClickUp at <app-url>/webhook/clickup, from Space Settings → Integrations → Webhooks (it shows the signing secret on creation).

Verification: HMAC-SHA256 over the raw body (X-Clickup-Signature).

The list id is at the top level on list-scoped events and on the nested task for task-scoped ones; the parser reads both.

Event constants

events spells every event this plugin can dispatch, as str enums grouped by event type, so a typo fails at import rather than by silently never matching. Raw strings still work, for events the constants do not cover yet.

What this plugin does not do

Call the ClickUp API. Use httpx — ClickUp ships no Python SDK, and its API is a handful of REST calls directly from your tasks — see examples/external_saas_integrations. This plugin owns only the part that is Flyte's: authenticating an inbound delivery and turning it into a run.

Release files for flyteplugins-clickup 2.7.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for flyteplugins-clickup 2.7.2
File Interpreter ABI Platform
flyteplugins_clickup-2.7.2-py3-none-any.whl Python 3 none any Details

Release files / flyteplugins_clickup-2.7.2-py3-none-any.whl

Download URL flyteplugins_clickup-2.7.2-py3-none-any.whl
Size 5.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4864bd6c80c7530d94103a0a36524fb6af109fa066dfa23ad2200175c750e20e
BLAKE2b-256 checksum
How to use checksums
afe6d4f92606a6fb393ad0e1a45c12211bf83ec165813b8e8684130fd06858d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release history Release notifications | RSS feed

2.10.1

1 release file

2.10.0

1 release file

2.9.0

1 release file

2.8.1

1 release file

2.8.0

1 release file

This release

2.7.2 This release

1 release file

2.7.1

1 release file

2.7.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page