Create holder global configuration
POST/v2/config/digital-wallet/openid/holder/global-configuration
Creates a global configuration for the holder wallet, including credential encryption, status refresh intervals, and redirect URLs for OID4VCI and OpenID4VP flows.
Request
- 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"
}