Read qtsp credential
GET/v2/config/digital-wallet/openid/key-management/qtsp/:credentialId
This endpoint is used for reading qtsp credential.
Request
Path Parameters
credentialId stringrequired
Identifier for the credential
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
credentialInfo objectrequired
OTP object
presence string
Specifies whether OTP is required
PIN object
format string
Specifies the PIN format
presence string
Specifies whether PIN is required
authMode string
Specifies the authentication mode
cert object
certificates string[]
List of certificates
issuerDN string
Issuer Distinguished Name
serialNumber string
Certificate serial number
status string
Certificate status
subjectDN string
Subject Distinguished Name
validFrom string
Certificate validity start date
validTo string
Certificate validity end date
description string
Description of the credential
key object
algo string[]
List of supported algorithms
curve string
Elliptic curve used
len integer
Key length
status string
Key status
multisign integer
Number of required signatures
{
"credentialInfo": {
"OTP": {
"presence": "string"
},
"PIN": {
"format": "string",
"presence": "string"
},
"authMode": "string",
"cert": {
"certificates": [
"string"
],
"issuerDN": "string",
"serialNumber": "string",
"status": "string",
"subjectDN": "string",
"validFrom": "string",
"validTo": "string"
},
"description": "string",
"key": {
"algo": [
"string"
],
"curve": "string",
"len": 0,
"status": "string"
},
"multisign": 0
}
}
Loading...