Sectigo Public ACME accounts
Sectigo Public ACME accounts API overview
The Sectigo public ACME accounts API allows integrators to manage Automated Certificate Management Environment (ACME) accounts used for certificate issuance.
The API supports the following actions:
- Creating and managing ACME accounts.
- Adding or removing domains.
- Retrieving account clients.
- Deactivating ACME clients associated with the account.
Sectigo Public ACME accounts API endpoints
The following table lists the endpoints for managing ACME accounts.
Click any action in the first column to open its API reference page.
| Action | Method | Path | Description |
|---|---|---|---|
| Get ACME account details | GET | /api/acme/v2/account/{id} | Retrieve details for a specific ACME account. |
| Update ACME account details | PUT | /api/acme/v2/account/{id} | Update configuration or metadata for an ACME account. |
| Delete an ACME account | DELETE | /api/acme/v2/account/{id} | Remove an ACME account. |
| List ACME accounts | GET | /api/acme/v2/account | Retrieve a list of all ACME accounts. |
| Create an ACME account | POST | /api/acme/v2/account | Create a new ACME account. |
| List ACME account’s domains | GET | /api/acme/v2/account/{id}/domain | Retrieve domains associated with a specific ACME account. |
| Add domains to ACME account | POST | /api/acme/v2/account/{id}/domain | Add one or more domains to an ACME account. |
| Remove domains from ACME account | DELETE | /api/acme/v2/account/{id}/domain | Remove a domain from an ACME account. |
| List ACME account’s clients | GET | /api/acme/v2/account/{id}/client | Retrieve ACME clients associated with the account. |
| Deactivate ACME account’s client | PUT | /api/acme/v2/account/{id}/client/{clientId} | Deactivate a specific ACME client. |
Updated about 23 hours ago