Skip to main content
GET
/
api
/
v2
/
config
/
{path}
Error
A valid request URL is required to generate request examples
{
  "path": "general/identity/site_name",
  "kind": "string",
  "value": "Comerix Flow",
  "present": true,
  "source_scope": null
}

Authorizations

Authorization
string
header
required

Scoped personal access token (cfp_…), validated by the stateless mcp and api_v2 firewalls. The effective permission is the intersection of the user's ACL, the token's scopes, and tenant isolation. The MCP gateway requires the matching mcp:* tool scope; the /api/v2/* surface (including the Config read API) additionally requires the api:full scope and an admin owner.

Path Parameters

path
string
required

Full slash path of the field, e.g. general/identity/site_name.

Query Parameters

scope
string

Scope selector: global, organization:<uuid>, or tenant:<uuid>. Defaults to the caller's own workspace scope (superadmins: global).

Response

The resolved value. Cache-Control: no-store.

path
string
required
Example:

"general/identity/site_name"

kind
string
required
Example:

"string"

value
any
required

The resolved, typed, JSON-encodable value. Feature flags return their state object (enabled, rolloutPercent, audience, enabledFor); null when no value is set at any scope and no schema default applies.

present
boolean
required

True when an effective value exists (value is not null).

source_scope
string | null
required

Scope key the winning override lives at (global, organization:<uuid>, tenant:<uuid>), or null when the value is the schema default.