Metadata

Retrieves the OpenID Credential Issuer metadata configuration

get

Get OpenID Credential Issuer metadata

Responses
200
The issuer metadata
application/json
get
GET /openid-credential-issuer HTTP/1.1
Host: .well-known
Accept: */*
200

The issuer metadata

{
  "credential_issuer": "text",
  "credential_endpoint": "text",
  "token_endpoint": "text",
  "schema_endpoint": "text",
  "authorize_endpoint": "text",
  "offering_endpoint": "text",
  "authorization_servers": [
    "text"
  ],
  "display": [
    {
      "name": "text",
      "locale": "text"
    }
  ],
  "credential_configurations_supported": {
    "ANY_ADDITIONAL_PROPERTY": {
      "format": "jwt_vc_json",
      "display": [
        {
          "name": "text",
          "locale": "text"
        }
      ]
    }
  },
  "proof_types_supported": {
    "jwt": {
      "proof_signing_alg_values_supported": [
        "text"
      ]
    }
  }
}

Retrieves the DID metadata with domain linkage credential

get

Get DID metadata

Responses
200
The DID metadata with JWT
application/json
get
GET /did-configuration HTTP/1.1
Host: .well-known
Accept: */*
200

The DID metadata with JWT

{
  "entries": [
    {
      "did": "text",
      "jwt": "text"
    }
  ]
}