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.
Defines whether credential request encryption is required or not from the holder
Defines the expiry of authorisation request in seconds
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
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.
{
"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
}
}