Certificates
Sign Certificate
Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- AWS Auth
- Azure Auth
- Kubernetes Auth
- OIDC Auth
- JWT Auth
- LDAP Auth
- Groups
- Organizations
- Projects
- Project Users
- Project Groups
- Project Identities
- Project Roles
- Project Templates
- Environments
- Folders
- Secret Tags
- Secrets
- Dynamic Secrets
- Secret Imports
- Secret Rotations
- Identity Specific Privilege
- App Connections
- Secret Syncs
- Integrations
- Service Tokens
- Audit Logs
Infisical PKI
- Certificate Authorities
- Certificates
- Certificate Templates
- Certificate Collections
- PKI Alerting
Infisical SSH
- Hosts
- Host Groups
- Certificates
- Certificate Authorities
- Certificate Templates
Infisical KMS
- Keys
- Encryption
- Signing
Certificates
Sign Certificate
Sign certificate
POST
/
api
/
v1
/
pki
/
certificates
/
sign-certificate
curl --request POST \
--url https://us.infisical.com/api/v1/pki/certificates/sign-certificate \
--header 'Content-Type: application/json' \
--data '{
"caId": "<string>",
"certificateTemplateId": "<string>",
"pkiCollectionId": "<string>",
"csr": "<string>",
"friendlyName": "<string>",
"commonName": "<string>",
"altNames": "",
"ttl": "<string>",
"notBefore": "<string>",
"notAfter": "<string>",
"keyUsages": [
"digitalSignature"
],
"extendedKeyUsages": [
"clientAuth"
]
}'
{
"certificate": "<string>",
"issuingCaCertificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>"
}
Body
application/json
Response
200
application/json
Default Response
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://us.infisical.com/api/v1/pki/certificates/sign-certificate \
--header 'Content-Type: application/json' \
--data '{
"caId": "<string>",
"certificateTemplateId": "<string>",
"pkiCollectionId": "<string>",
"csr": "<string>",
"friendlyName": "<string>",
"commonName": "<string>",
"altNames": "",
"ttl": "<string>",
"notBefore": "<string>",
"notAfter": "<string>",
"keyUsages": [
"digitalSignature"
],
"extendedKeyUsages": [
"clientAuth"
]
}'
{
"certificate": "<string>",
"issuingCaCertificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>"
}