Get ACME client details

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

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

{
    "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

NameReq/OptTypeDescription
accountIdrequiredstringAccount ID.
agentIdrequiredlongID of the agent.
divisionIdrequiredstringDivision ID.

Response parameters

NameTypeDescription
errorobjectObject with error details, if any.
Note: Returns null if there are no errors.
dataobjectObject with response data.
.. idobjectAutomation ID.
.. applicationNamestringApplication name.
.. applicationVersionstringApplication version number.
.. osstringOperating system where the application is installed.