Trust Registry
Validate a trusted issuer
Re-check that a registered trusted issuer is reachable and its trust anchor resolves. Returns the full trusted issuer object plus a validation block summarizing the check. Scoped to the caller's tenant — a UUID belonging to a different tenant returns 404.
post/v1/trusted-issuers/{uuid}/validate
Path parameters
uuidstring uuid required
UUID of the trusted issuer to validate.
Response
The trusted issuer object with an appended validation block describing the re-check result.
Example response
{
"id": "0a1b2c3d-4e5f-6071-8293-a4b5c6d7e8f9",
"name": "Gov PID",
"iss": "https://pid.gov.example",
"trust_anchor": "https-jwks",
"jwks_uri": "https://pid.gov.example/.well-known/jwks.json",
"status": "active",
"added_by": "tenant:state-university",
"framework": "eidas2",
"created_at": "2026-06-29T12:34:56.789012+00:00",
"validation": {
"reachable": true,
"anchor_ok": true,
"status": "active"
}
}