API Reference · Activity

Get the workspace's activity alert subscription

Whether workspace activity is pushed to a notification channel, and with which scope filter. `enabled: false` means no subscription.

GET/v1/tenants/{name}/activity-alerts

Authorization

x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.

Path parameters

namestringrequired
Workspace (tenant) name.

Response

200The current subscription.

enabledboolean
channelIdstring
A notification channel id from the Integrations page. Required when enabled.
scopeenum
asks = human-help requests only; agents = agent/master actions; all = everything.
curl https://api.live-llm.com/v1/tenants/acme/activity-alerts \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/activity-alerts
Fill required path param: name.
Example response200
{
  "enabled": true,
  "channelId": "ch_tg_4821",
  "scope": "asks"
}