v8

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

Block or unblock an issuer in a framework

Block or unblock a single issuer within a trusted framework. Blocking removes just that issuer from the framework's blanket trust while leaving every other member issuer trusted. Send blocked: false to lift a previously set block. Pass an optional relying_party to scope the override to one relying party.

post/v1/trust-frameworks/{slug}/issuer-overrides

Path parameters

slugstring required

Slug of the trust framework.

Request body

issstring uri required

You set the issuer identifier to block or unblock.

blockedboolean required

You set true to block the issuer, false to unblock it.

relying_partystring uuid

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

Example request

{
  "iss": "https://issuer.gov.example",
  "blocked": true,
  "relying_party": "44b2d61a-1634-486b-a35a-df26eb653a1a"
}

Response

The issuer override was applied.

slugstring

You receive the framework slug.

issstring uri

You receive the normalized issuer identifier.

blockedboolean

You receive the effective blocked state for this issuer in the framework.

Example response

{
  "slug": "eidas2",
  "iss": "https://issuer.gov.example",
  "blocked": true
}