docs/integrations/app-connections/digicert.mdx
Infisical supports connecting to DigiCert CertCentral using a CertCentral API Key. This connection powers the DigiCert Certificate Authority for direct (non-ACME) certificate issuance.
<Note> This connection is for the DigiCert **CertCentral Services API**. If you are using DigiCert's ACME endpoint with External Account Binding (EAB) credentials, use the [ACME Certificate Authority](/documentation/platform/pki/ca/acme-ca) instead. </Note>
Under **API key restrictions**, leave the default **None** or select **Orders, Domains, Organizations**
Copy the generated key value, it is only shown once.


</Step>
<Step title="Select DigiCert Connection">
Click **Add Connection** and choose **DigiCert** from the list of available connections.

</Step>
<Step title="Fill out Connection Form">
Complete the form with:
- A **name** for the connection (e.g. `digicert-prod`)
- An optional **description**
- The **CertCentral Region** matching your account, **US** or **EU**
- Your **CertCentral API Key**

</Step>
<Step title="Connection Created">
After clicking **Create**, Infisical validates the key by calling
`GET /services/v2/organization`. Once the key is confirmed, the connection is ready to use
in a DigiCert Certificate Authority.

</Step>
</Steps>
### Sample request
```bash Request
curl --request POST \
--url https://app.infisical.com/api/v1/app-connections/digicert \
--header 'Content-Type: application/json' \
--data '{
"name": "my-digicert-connection",
"method": "api-key",
"credentials": {
"apiKey": "<YOUR-CERTCENTRAL-API-KEY>",
"region": "us"
}
}'
```
### Sample response
```bash Response
{
"appConnection": {
"id": "a1b2c3d4-86f7-4026-a95e-efb8aeb0d8e6",
"name": "my-digicert-connection",
"description": null,
"version": 1,
"orgId": "6f03caa1-a5de-43ce-b127-95a145d3464c",
"createdAt": "2026-04-20T00:00:00.000Z",
"updatedAt": "2026-04-20T00:00:00.000Z",
"isPlatformManagedCredentials": false,
"app": "digicert",
"method": "api-key",
"credentials": {}
}
}
```