v8

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

Trust or untrust a framework

Trust or untrust an entire framework for the tenant in one call. Every issuer that belongs to a trusted framework passes the verification trust gate without being registered individually. Pass an optional relying_party to scope the setting to one relying party.

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

Path parameters

slugstring required

Slug of the trust framework.

Request body

enabledboolean required

You set whether the framework is trusted.

relying_partystring uuid

You optionally scope the setting to a relying party by UUID.

Example request

{
  "enabled": true,
  "relying_party": "44b2d61a-1634-486b-a35a-df26eb653a1a"
}

Response

The framework trust setting was applied.

slugstring

You receive the framework slug.

enabledboolean

You receive the stored trust value.

effectiveboolean

You receive the effective trust decision after applying overrides.

Example response

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