Certificate Authorities
Renew
Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- AWS Auth
- Azure Auth
- Kubernetes Auth
- OIDC Auth
- JWT 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
Certificate Authorities
Renew
Perform CA certificate renewal
POST
/
api
/
v1
/
pki
/
ca
/
{caId}
/
renew
curl --request POST \
--url https://us.infisical.com/api/v1/pki/ca/{caId}/renew \
--header 'Content-Type: application/json' \
--data '{
"type": "existing",
"notAfter": "<string>"
}'
{
"certificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>"
}
Path Parameters
The ID of the CA to renew the CA certificate for.
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/ca/{caId}/renew \
--header 'Content-Type: application/json' \
--data '{
"type": "existing",
"notAfter": "<string>"
}'
{
"certificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>"
}