docs/documentation/platform/pki/ca/ca-renewal.mdx
Renew a CA certificate to extend its validity period. The renewal process varies depending on how your CA was originally signed.
<Info> This page is for product admins managing PKI infrastructure. If you're looking to renew end-entity certificates, see [Applications](/documentation/platform/pki/applications/overview). </Info> <Note>
The new **Valid Until** date must be within the validity period of the parent CA.
</Note>
</Step>
</Steps>
### Sample request
```bash
curl --location --request POST 'https://app.infisical.com/api/v1/cert-manager/ca/internal/<ca-id>/renew' \
--header 'Authorization: Bearer <access-token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "existing",
"notAfter": "2029-06-12"
}'
```
### Sample response
```json
{
"certificate": "...",
"certificateChain": "...",
"serialNumber": "..."
}
```