Update verifier global configuration
PUT/v2/config/digital-wallet/openid/verifier/global-configuration/:globalConfigurationId
Updates an existing verifier global configuration for OpenID4VP operations.
Request
Path Parameters
globalConfigurationId stringrequired
Unique identifier of the issuer's global configuration.
- application/json
Body
supportCredentialEncryption boolean
Define whether verifier is supporting credential encyption
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
verifierGlobalConfiguration object
verifierGlobalConfigurationId stringrequired
Unique identifier for the verifier's global configuration.
supportCredentialEncryption booleanrequired
When true, the verifier supports encrypted OpenID for Verifiable Presentation (OpenID4VP) Authorization Responses.
createdAt numberrequired
Unix timestamp (in seconds) when this configuration was created.
updatedAt numberrequired
Unix timestamp (in seconds) when this configuration was last modified.
{
"verifierGlobalConfiguration": {
"verifierGlobalConfigurationId": "string",
"supportCredentialEncryption": true,
"createdAt": 0,
"updatedAt": 0
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...