List global configuration
GET/v2/config/digital-wallet/openid/global-configurations
This endpoint is used for listing global configuration.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
globalConfiguration object[]
Identifier for the global configuration
Defines the expiration for verifiable credential in days. If not specified, by default it is specified as 30 days.
credentialBranding objectrequired
Defines name for the credential
Defines the discription for the credential definition.
Defines background color for the credential
Defines text color for the credential.
logo object
uri for the logo
Alternate text for the logo uri
backgroundImage object
uri for the background image
Alternate text for background image uri
Defines whether credential request encryption is required or not from the holder
Defines the expiry of authorisation request in seconds
Timestamp when the record was created.
Timestamp when the record was updated.
pagination object
Current page number
Total number of items available
Total number of pages based on limit
Number of items per page
Indicates if there's a previous page
Indicates if there's a next page
{
"globalConfiguration": [
{
"globalConfigurationId": "string",
"credentialExpirationInDays": 0,
"credentialBranding": {
"name": "string",
"description": "string",
"backgroundColor": "string",
"textColor": "string",
"logo": {
"uri": "string",
"altText": "string"
},
"backgroundImage": {
"uri": "string",
"altText": "string"
}
},
"credentialRequestEncryptionRequired": true,
"authorizationRequestExpiry": 0,
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}