Metadata
Get OpenID Credential Issuer metadata
Responses
200
The issuer metadata
application/json
OpenID Credential Issuer metadata
credential_issuerstringRequired
Base URL of the credential issuer
credential_endpointstringOptional
Endpoint for credential operations
token_endpointstringOptional
Endpoint for token operations
schema_endpointstringOptional
Endpoint for schema operations
authorize_endpointstringOptional
Endpoint for authorization requests
offering_endpointstringRequired
Endpoint for credential offerings
authorization_serversstring[]Required
List of authorization server URLs
get/.well-known/openid-credential-issuer
GET /.well-known/openid-credential-issuer HTTP/1.1
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"
]
}
}
}Get DID metadata
Responses
200
The DID metadata with JWT
application/json
DID metadata response
get/.well-known/did-configuration
GET /.well-known/did-configuration HTTP/1.1
Accept: */*
200
The DID metadata with JWT
{
"entries": [
{
"did": "text",
"jwt": "text"
}
]
}Last updated