v1

latestOpenAPI 3.0.12026-07-177949123.5 KB
v1/certificate

Keystore enrollment

Creates a keystore for the specified end entity

post/v1/certificate/enrollkeystore

Request body

usernamestring

Username

passwordstring

Password

key_algstring

Key algorithm used for enrollment

key_specstring

Key specification to use

Example request

{
  "username": "JohnDoe",
  "password": "foo123",
  "key_alg": "RSA",
  "key_spec": "4096"
}

Response

Successful operation

certificatestring byte

Certificate

serial_numberstring

Hex Serial Number

response_formatstring

Response format

certificate_chainstring[]

CA Certificate chain

Example response

{
  "certificate": "TUlJRFh6Q0NBLi4uZVcxWnJvMD0=",
  "serial_number": "1234567890ABCDEF",
  "response_format": "DER",
  "certificate_chain": [
    "MII123efg...345xyz0="
  ]
}