--- title: "Get ACME client details" source_url: https://dev.digicert.com/certcentral-apis/automation-api/get-acme-client-details.html api_method: POST api_endpoint: "/automationws/v1/agent/acmeClients" api_url: "https://caas.digicert.com/automationws/v1/agent/acmeClients" --- **POST** `https://caas.digicert.com/automationws/v1/agent/acmeClients` Use this endpoint to get information about the DigiCert-provided ACME clients that are associated with the IP addresses and ports you have configured for managed automation. ## Example requests and responses ## cURL ```bash curl --location --request POST 'https://caas.digicert.com/automationws/v1/agent/acmeClients' \ --header 'X-DC-DEVKEY: {{api_key}}' \ --header 'Content-Type: application/json' \ --data-raw '{ "accountId": 5153184, "agentId": 2060, "divisionId": "677793" }' ``` ## 200 OK ```json { "error": null, "data": [ { "id": 89, "applicationName": "APACHE", "applicationVersion": "2.4.x", "os": "windows" }, { "id": 103, "applicationName": "IBM HTTPD", "applicationVersion": "9.0.x", "os": "windows" }, { "id": 102, "applicationName": "IBM HTTPD", "applicationVersion": "8.5.x", "os": "windows" }, { "id": 113, "applicationName": "IIS", "applicationVersion": "10.0", "os": "windows" }, { "id": 87, "applicationName": "NGINX", "applicationVersion": "1.17.x", "os": "windows" }, { "id": 98, "applicationName": "Tomcat", "applicationVersion": "8.5.x", "os": "windows" } ] } ``` ## Request parameters
Name Req/Opt Type Description
accountId required string Account ID.
agentId required long ID of the agent.
divisionId required string Division ID.
## Response parameters
Name Type Description
error object Object with error details, if any.
Note: Returns null if there are no errors.
data object Object with response data.
.. id object Automation ID.
.. applicationName string Application name.
.. applicationVersion string Application version number.
.. os string Operating system where the application is installed.