Update holder global configuration
PUT/v2/config/digital-wallet/openid/holder/global-configuration/:globalConfigurationId
Updates an existing holder global configuration for OID4VCI and OpenID4VP flows.
Request
Path Parameters
Unique identifier of the issuer's global configuration.
- application/json
Body
Define whether holder is supporting credential encyption
Define the interval for refreshing credential status
Define the redirect url for the authorisation request
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
holderGlobalConfiguration object
Unique identifier for the holder's global wallet configuration.
When true, the holder's wallet supports encrypted OID4VCI Credential Responses.
Interval (in seconds) at which the wallet checks credential revocation status.
Default redirect URL for the OAuth 2.0 Authorization Code Flow during OID4VCI credential issuance.
Unix timestamp (in seconds) when this configuration was created.
Unix timestamp (in seconds) when this configuration was last modified.
{
"holderGlobalConfiguration": {
"holderGlobalConfigurationId": "string",
"supportCredentialEncryption": true,
"refreshCredentialStatusInterval": 0,
"redirectUrl": "string",
"createdAt": 0,
"updatedAt": 0
}
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}