Read global configuration
GET/v2/config/digital-wallet/openid/global-configuration/:globalConfigurationId
This endpoint is used for reading global configuration.
Request
Path Parameters
globalConfigurationId stringrequired
Identifier for the global configuration.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
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.
{
"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
}
}
Loading...