Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- AWS Auth
- OCI 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
- Secret Scanning
- Identity Specific Privilege
- App Connections
- Secret Syncs
- Integrations
- Service Tokens
- Audit Logs
Infisical PKI
- Subscribers
- Certificate Authorities
- ACME
- Internal
- GETList (Deprecated)
- POSTCreate (Deprecated)
- GETRetrieve (Deprecated)
- PATCHUpdate (Deprecated)
- DELDelete (Deprecated)
- POSTRenew
- GETList CA certificates
- GETGet CSR
- GETRetrieve certificate / chain
- POSTSign intermediate certificate
- POSTImport certificate
- POSTIssue certificate
- POSTSign certificate
- GETList CRLs
- Certificates
- Certificate Templates
- Certificate Collections
- PKI Alerting
Infisical SSH
- Hosts
- Host Groups
- Certificates
- Certificate Authorities
- Certificate Templates
Infisical KMS
- Keys
- Encryption
- Signing
Certificate Authorities
List CA certificates
Get list of past and current CA certificates for a CA
GET
/
api
/
v1
/
pki
/
ca
/
{caId}
/
ca-certificates
curl --request GET \
--url https://us.infisical.com/api/v1/pki/ca/{caId}/ca-certificates
[
{
"certificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>",
"version": 123
}
]
Path Parameters
The ID of the CA to get the CA certificates for.
Response
200
application/json
Default Response
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://us.infisical.com/api/v1/pki/ca/{caId}/ca-certificates
[
{
"certificate": "<string>",
"certificateChain": "<string>",
"serialNumber": "<string>",
"version": 123
}
]
Assistant
Responses are generated using AI and may contain mistakes.