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.
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"
}'
{
"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"
}
]
}
Name | Req/Opt | Type | Description |
---|---|---|---|
accountId | required | string | Account ID. |
agentId | required | long | ID of the agent. |
divisionId | required | string | Division ID. |
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. |