v8

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-05730512.7 KB
Trust Registry

Get framework trust state

Return whether a trust framework is currently trusted for the tenant, and whether that value is the framework default or an explicit override. Pass an optional relying_party query parameter to read the per-relying-party trust state.

get/v1/trust-frameworks/{slug}/trust

Path parameters

slugstring required

Slug of the trust framework.

Query parameters

relying_partystring uuid

Optional relying party UUID to scope the trust state to.

Response

The framework trust state for the tenant.

slugstring

You receive the framework slug.

enabledboolean

You receive true when the framework is trusted.

is_defaultboolean

You receive true when enabled is the framework default (no explicit override exists).

Example response

{
  "slug": "eidas2",
  "enabled": true,
  "is_default": true
}