POST
/
api
/
v1
/
pki
/
subscribers
/
{subscriberName}
/
issue-certificate
cURL
curl --request POST \
  --url https://us.infisical.com/api/v1/pki/subscribers/{subscriberName}/issue-certificate \
  --header 'Content-Type: application/json' \
  --data '{
  "projectId": "<string>"
}'
{
  "certificate": "<string>",
  "issuingCaCertificate": "<string>",
  "certificateChain": "<string>",
  "privateKey": "<string>",
  "serialNumber": "<string>"
}

Path Parameters

subscriberName
string
required

The name of the PKI subscriber to issue the certificate for.

Body

application/json
projectId
string
required

The ID of the project of the PKI subscriber to issue the certificate for.

Response

Default Response

certificate
string
required

The issued certificate.

issuingCaCertificate
string
required

The certificate of the issuing CA.

certificateChain
string
required

The certificate chain of the issued certificate.

privateKey
string
required

The private key of the issued certificate.

serialNumber
string
required

The serial number of the issued certificate.