v8

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

List relying parties

List relying parties registered under this tenant. Didit ID uses each origin when wallet presentation requests flow through the W3C Digital Credentials API. The response is a bare JSON array ordered by most recent creation time.

get/v1/relying-parties

Response

A bare JSON array of relying party objects for the caller's tenant.

client_idstring

You receive the OpenID4VP (OpenID for Verifiable Presentations) client identifier. The value can be an empty string when you do not set one.

created_atstring date-time

You receive the timestamp when this relying party was registered.

idstring uuid

You receive the UUID for this relying party registration.

namestring

You receive the relying party display name.

originstring uri

You receive the registered web origin for this relying party.

statusstring

You receive the registration status for this relying party.

trust_policystring

You receive the trust policy for this relying party: tenant (inherit the tenant trust registry) or custom (per-relying-party trust rules).

Example response

[
  {
    "created_at": "2026-07-02T23:51:58.746686+00:00",
    "id": "44b2d61a-1634-486b-a35a-df26eb653a1a",
    "name": "Campus Door",
    "origin": "https://door.acme.example",
    "status": "active",
    "trust_policy": "tenant"
  }
]