Clubhouseapi
Clubhouse API is the API for Clubhouse, now known as Shortcut, a project management platform for software development teams.
- Base URL:
https://www.clubhouseapi.com/api - Auth:
bearer(pass your key via theapiKeyinput)
Operations
get_check_for_update— GET /check_for_update — Clubhouse uses this to check for updates when app is not installed from App Store (eg TestFlight)get_get_actionable_notifications— GET /get_actionable_notifications — get actionable notifications (the bell again)get_get_all_topics— GET /get_all_topics — gets all topics.get_get_channels— GET /get_channels — get all channelsget_get_events— GET /get_events — the Upcoming for You pageget_get_notifications— GET /get_notifications — get notifications (the bell icon)
Inputs
apiKey— your clubhouseapi API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_check_for_update
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_check_for_update, get_get_actionable_notifications, get_get_all_topics, get_get_channels, get_get_events, get_get_notifications |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |