Upload certificate chain
POST/v2/config/digital-wallet/openid/key-management/keys/:keyId/certificate-chain
Uploads a certificate chain file to associate with a specific key, completing the key provisioning process for qualified electronic signatures.
Request
Path Parameters
keyId stringrequired
Unique identifier of the key
- multipart/form-data
Body
certificate_file binaryrequired
The certificate chain file (CRT format) to upload and associate with the key
Responses
- 200
- 401
- 500
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
key_id string
Unique identifier of the key the certificate chain was associated with
certificates_count integer
Number of certificates in the uploaded chain
x5t string
X.509 certificate thumbprint (SHA-1), Base64url-encoded
x5t_s256 string
X.509 certificate thumbprint (SHA-256), Base64url-encoded
{
"key_id": "string",
"certificates_count": 0,
"x5t": "string",
"x5t_s256": "string"
}
Unauthorized
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Internal server error
Response Headers
- application/json
- Schema
- Example (from schema)
Schema
errorCode integerrequired
errorDescription stringrequired
{
"errorCode": 400,
"errorDescription": "Bad input parameter"
}
Loading...