Check agent config

POST https://caas.digicert.com/automationws/v1/agent/checkconfig
Use this endpoint to update the configuration of the automation agent with any changes to the server configuration (such as the addition or removal of ports or IPs).

Example requests and responses

cURL

curl --location --request POST 'https://caas.digicert.com/automationws/v1/agent/checkconfig' \
--header 'X-DC-DEVKEY: {{api_key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "accountId": 5153184,
    "agentId": 2029,
    "divisionId": "677793"   
}'

200 OK

{
    "error": null,
    "data": "Check configuration triggered successfully"
}

Request parameters

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

Response parameters

NameTypeDescription
errorobjectObject with error details, if any.
dataobjectMessage with additional information about the request.