diff --git a/docs/documentation/platform/pki/enrollment-methods/api.mdx b/docs/documentation/platform/pki/enrollment-methods/api.mdx
index a6a9d04dac..c7dff2a271 100644
--- a/docs/documentation/platform/pki/enrollment-methods/api.mdx
+++ b/docs/documentation/platform/pki/enrollment-methods/api.mdx
@@ -149,9 +149,6 @@ Here, select the certificate profile from step 1 that will be used to issue the
Note: If the certificate is available to be issued immediately, the `certificate` field in the response will contain the certificate data. If issuance is delayed (for example, due to pending approval or additional processing), the `certificate` field will be `null` and you can use the `certificateRequestId` to poll for status or retrieve the certificate when it is ready using the [Get Certificate Request](/api-reference/endpoints/certificates/certificate-request) API endpoint.
-
- Also be sure to store the `privateKey` as it is only returned once here at the time of certificate issuance. The `certificate` and `certificateChain` will remain accessible and can be retrieved at any time.
-
If you have an external private key, you can also issue a certificate by making an API request containing a pem-encoded CSR (Certificate Signing Request) to the same [Issue Certificate](/api-reference/endpoints/certificates/create-certificate) API endpoint.
diff --git a/docs/documentation/platform/pki/guides/request-cert-agent.mdx b/docs/documentation/platform/pki/guides/request-cert-agent.mdx
index 2bc976cb1b..698ea25471 100644
--- a/docs/documentation/platform/pki/guides/request-cert-agent.mdx
+++ b/docs/documentation/platform/pki/guides/request-cert-agent.mdx
@@ -10,6 +10,8 @@ Instead of [manually requesting](/documentation/platform/pki/guides/request-cert
## Diagram
+The following sequence diagram illustrates the certificate enrollment workflow for requesting a certificate using the Infisical Agent from Infisical.
+
```mermaid
sequenceDiagram
autonumber
diff --git a/docs/documentation/platform/pki/guides/request-cert-api.mdx b/docs/documentation/platform/pki/guides/request-cert-api.mdx
index 3ba4a533cd..e44771d73d 100644
--- a/docs/documentation/platform/pki/guides/request-cert-api.mdx
+++ b/docs/documentation/platform/pki/guides/request-cert-api.mdx
@@ -32,7 +32,7 @@ sequenceDiagram
CA-->>Infis: Signed certificate
(+ chain)
end
- Infis-->>Client: Return certificate, certificate chain,
issuing CA certificate, serial number,
certificate ID
(and private key if server-generated)
+ Infis-->>Client: Return certificate, certificate chain,
issuing CA certificate, serial number,
certificate ID
(and private key if server-generated)
OR certificate request ID if async
```
## Guide