Path Parameters
The ID of the CA to sign the intermediate certificate with.
Body
application/json
Response
Default Response
The response is of type object
.
curl --request POST \
--url https://us.infisical.com/api/v1/pki/ca/{caId}/sign-intermediate \
--header 'Content-Type: application/json' \
--data '{
"csr": "<string>",
"notBefore": "<string>",
"notAfter": "<string>",
"maxPathLength": -1
}'
{
"certificate": "<string>",
"certificateChain": "<string>",
"issuingCaCertificate": "<string>",
"serialNumber": "<string>"
}
Create intermediate CA certificate from parent CA
curl --request POST \
--url https://us.infisical.com/api/v1/pki/ca/{caId}/sign-intermediate \
--header 'Content-Type: application/json' \
--data '{
"csr": "<string>",
"notBefore": "<string>",
"notAfter": "<string>",
"maxPathLength": -1
}'
{
"certificate": "<string>",
"certificateChain": "<string>",
"issuingCaCertificate": "<string>",
"serialNumber": "<string>"
}
The ID of the CA to sign the intermediate certificate with.
Default Response
The response is of type object
.
Was this page helpful?