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

Path Parameters

subscriberName
string
required

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

Body

application/json
projectId
string
required

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

csr
string
required

The CSR to be used to sign the certificate.

Required string length: 1 - 3000

Response

Default Response

certificate
string
required

The signed certificate.

issuingCaCertificate
string
required

The certificate of the issuing CA.

certificateChain
string
required

The certificate chain of the signed certificate.

serialNumber
string
required

The serial number of the issued certificate.