v1

latestOpenAPI 3.0.12026-07-177949123.5 KB
v1/certificate

Finalize enrollment

Finalizes enrollment after administrator approval using request Id

post/v1/certificate/{request_id}/finalize

Path parameters

request_idinteger required

Approval request id

Request body

response_format'P12, BCFKS, JKS, DER'

Response format

passwordstring

Password

key_algstring

Key algorithm

key_specstring

Key specification

Example request

{
  "response_format": "P12",
  "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[]

Certificate chain

certificate_profilestring

Certificate profile name

end_entity_profilestring

End Entity profile name

Example response

{
  "certificate": "TUlJRFh6Q0NBLi4uZVcxWnJvMD0=",
  "serial_number": "1234567890ABCDEF",
  "response_format": "DER",
  "certificate_chain": [
    "ABC123efg...345xyz0="
  ],
  "certificate_profile": "ENDUSER",
  "end_entity_profile": "ExampleEEP"
}