Update global configuration
PUT/v2/config/digital-wallet/openid/global-configuration/:globalConfigurationId
This endpoint is used for updating global configuration.
Request
Path Parameters
Identifier for the global configuration.
- application/json
Body
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.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
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
Timestamp when the record was created.
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
}
}