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[]
globalConfigurationId stringrequired
Identifier for the global configuration
credentialExpirationInDays numberrequired
Defines the expiration for verifiable credential in days. If not specified, by default it is specified as 30 days.
credentialBranding objectrequired
name string
Defines name for the credential
description string
Defines the discription for the credential definition.
backgroundColor string
Defines background color for the credential
textColor string
Defines text color for the credential.
logo object
uri string
uri for the logo
altText string
Alternate text for the logo uri
backgroundImage object
uri string
uri for the background image
altText string
Alternate text for background image uri
createdAt numberrequired
Timestamp when the record was created.
updatedAt numberrequired
Timestamp when the record was updated.
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
{
"globalConfiguration": [
{
"globalConfigurationId": "string",
"credentialExpirationInDays": 0,
"credentialBranding": {
"name": "string",
"description": "string",
"backgroundColor": "string",
"textColor": "string",
"logo": {
"uri": "string",
"altText": "string"
},
"backgroundImage": {
"uri": "string",
"altText": "string"
}
},
"createdAt": 0,
"updatedAt": 0
}
],
"pagination": {
"currentPage": 0,
"totalItems": 0,
"totalPages": 0,
"limit": 0,
"hasPrevious": true,
"hasNext": true
}
}
Loading...