Skip to main content
The Workspace settings page is the central control panel for your Causeloop workspace. Changes here affect every member of the workspace. You need the Workspace Admin (tenant_admin) role or the workspace:write scope to save changes. Open it from the sidebar: Settings → Workspace.

General

FieldDescription
NameDisplay name shown in the header and emails. 2–100 characters.
SlugURL-safe identifier used in API paths and share links. Lowercase alphanumeric + hyphens, 1–60 characters, must start and end with alphanumeric.
DescriptionOptional summary of the workspace purpose. Max 2,000 characters.
IndustrySector tag used for benchmark comparisons (e.g. FinTech, Software).
TimezoneDefault IANA timezone for scheduled reports and digest emails (e.g. America/New_York). Members can override their own timezone in Account settings.
ThemeDefault colour theme — light or dark. Members can override this individually.
Changing the slug updates all shareable links that include it. Existing direct API calls using the workspace ID are not affected.

Plan and usage

The Plan card is read-only and shows:
  • Current plan tier (free, growth, enterprise)
  • Seats used / total seats available
  • API calls used / limit this billing period
  • Storage used / limit
  • Renewal date
  • A link to the Causeloop billing portal
To upgrade your plan or purchase additional seats, click Manage billing — it opens the billing portal in a new tab.

AI settings

These settings tune how Causeloop’s intelligence layer behaves across the workspace.
FieldDescription
Auto-link issuesWhen enabled, Causeloop automatically links new issues to existing patterns it detects as related.
Confidence thresholdMinimum AI confidence score (0.0–1.0) required to auto-link an issue or surface a recommendation. Higher values mean fewer but higher-confidence signals.
Proof window (days)Number of days (7–365) after a recommendation is closed that Causeloop monitors for recurrence to confirm the fix held.
Auto recommendationsCauseloop surfaces fix recommendations automatically as patterns mature.
Predictive alertsSend alerts when Causeloop predicts a pattern is likely to recur.
Anonymize PII in AIStrip personally identifiable information from text before it is sent to AI models.
Cross-workspace benchmarkingAllow anonymised aggregate metrics to contribute to cross-tenant benchmarks.
sso_enforced (require SSO for all sign-ins) is an Enterprise-only feature. Enabling it on a non-Enterprise plan returns 422 sso_requires_enterprise.

Saving changes

Click Save at the bottom of the form. The UI sends PATCH /v1/workspace with only the fields that changed.
curl -X PATCH "https://api.causeloop.ai/v1/workspace" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Platform Engineering",
    "timezone": "America/Chicago",
    "ai_confidence_threshold": 0.85
  }'
A 200 response returns the full updated workspace object. Errors:
StatusCodeCondition
409slug_takenAnother workspace already uses that slug
422sso_requires_enterpriseSSO enforcement requires Enterprise plan
422validation_errorA field value violates its constraint

For the full REST specification see API Reference → Workspace Settings.