/admin/demo-workspaceDemo Workspace Status
Return the workspace currently flagged ``is_demo``, or nulls. Surfaces which workspace's recent events are being exposed by the unauthenticated ``GET /stats/feed`` endpoint so an admin can see at a glance whether the homepage's "Live feed · last 24 hours" panel is wired to a real workspace and to whom that workspace belongs.
Responses
- 200
Successful Response
{ owner_email: string | null; workspace_id: string | null; workspace_name: string | null }
Try it
curl -X GET "https://api.competitorintelligence.co/admin/demo-workspace" \
-H "Authorization: Bearer $CI_API_TOKEN"Example response200 · application/json
{
"owner_email": "string",
"workspace_id": "string",
"workspace_name": "string"
}