light-mode-image
Learn
MATTR VII PlatformVerifier clients

Retrieve an OIDC Client

Retrieves an existing OIDC Verifier Client by providing its ID.

Analytics Events

OIDC_VERIFIER_CLIENT_RETRIEVE_STARTOIDC_VERIFIER_CLIENT_RETRIEVE_SUCCESSOIDC_VERIFIER_CLIENT_RETRIEVE_FAIL

Roles

adminverifier
GET/ext/oidc/v1/verifiers/{id}/clients/{clientId}
AuthorizationBearer <token>

In: header

Path Parameters

idstring

OIDC Verifier ID

Formatuuid
clientIdstring

OIDC Verifier Client ID

Formatuuid

Response Body

curl -X GET "https://example.vii.au01.mattr.global/ext/oidc/v1/verifiers/41458e5a-9092-40b7-9a26-d4eb43c5792f/clients/da9bb6e4-c9ae-4468-b6ac-72b90d6efd5d"
{
  "id": "da9bb6e4-c9ae-4468-b6ac-72b90d6efd5d",
  "secret": "H2epdcmNJ46hXJo5opdzvhbZK9W2ZGPkQh.E",
  "name": "OIDC Client for the verifier",
  "redirectUris": [
    "https://example.com/callback"
  ],
  "responseTypes": [
    "code"
  ],
  "grantTypes": [
    "authorization_code"
  ],
  "tokenEndpointAuthMethod": "client_secret_post",
  "idTokenSignedResponseAlg": "ES256",
  "applicationType": "web",
  "logoUri": "https://example.com/logo.png"
}
{
  "code": "string",
  "message": "string",
  "details": [
    {
      "value": "string",
      "msg": "Invalid value",
      "param": "id",
      "location": "body"
    }
  ]
}
{
  "code": "string",
  "message": "string",
  "details": [
    {
      "value": "string",
      "msg": "Invalid value",
      "param": "id",
      "location": "body"
    }
  ]
}

How would you rate this page?