List holder global configuration
GET/v2/config/digital-wallet/openid/holder/global-configurations
Lists all holder global configurations for OID4VCI and OpenID4VP flows.
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
holderGlobalConfiguration object[]
holderGlobalConfigurationId stringrequired
Unique identifier for the holder's global wallet configuration.
supportCredentialEncryption booleanrequired
When true, the holder's wallet supports encrypted OID4VCI Credential Responses.
refreshCredentialStatusInterval integer
Interval (in seconds) at which the wallet checks credential revocation status.
redirectUrl string
Default redirect URL for the OAuth 2.0 Authorization Code Flow during OID4VCI credential issuance.
createdAt numberrequired
Unix timestamp (in seconds) when this configuration was created.
updatedAt numberrequired
Unix timestamp (in seconds) when this configuration was last modified.
pagination object
currentPage integer
Current page number
totalItems integer
Total number of items available
totalPages integer
Total number of pages based on limit
limit integer
Number of items per page
hasPrevious boolean
Indicates if there's a previous page
hasNext boolean
Indicates if there's a next page
{
"holderGlobalConfiguration": [
{
"holderGlobalConfigurationId": "string",
"supportCredentialEncryption": true,
"refreshCredentialStatusInterval": 0,
"redirectUrl": "string",
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 1,
"totalItems": 25,
"totalPages": 3,
"limit": 10,
"hasPrevious": false,
"hasNext": true
}
}
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...