Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Actionable counts for the hub popup and red dots, plus the UCC callback URL to paste in Plivo Console.
Python
from kupe import Kupe client = Kupe() org_id = client.me().org_id summary = client.phones.ucc_summary(org_id) print(summary.actionable_count, summary.callback_url)
import { Kupe } from "kupe-sdk"; const kupe = new Kupe(); const orgId = (await kupe.me()).org_id!; const summary = await kupe.phones.ucc.summary({ org_id: orgId }); console.log(summary.actionable_count, summary.callback_url);
curl https://x.kupe.in/v1/orgs/org_.../plivo/ucc/summary \ -H "Authorization: Bearer sk-kupe-YOUR_KEY"
{ "actionable_count": 123, "pending": 123, "rejected": 123, "overdue": 123, "callback_url": "<string>" }
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Project API key (sk-kupe-...) or a Supabase user JWT.
sk-kupe-...
Successful Response