Description

Resets the agents statistics of the ABL application.

HTTP Operation

DELETE

URI

//host_name:port/oemanager/applications/ABL_app_name/agents/agentPID/agentStatData

Media type

application/vnd.progress+json

Response codes

200 Success
403 Access Denied
500 Unexpected Server Error

Command-line example

curl -X DELETE -u username:password -v
http://localhost:16680/oemanager/applications/oepas1/agents/1144/agentStatData

ABL HTTP client example

define variable resp as OpenEdge.Net.HTTP.IHttpResponse.

resp = OpenEdge.Net.HTTP.ClientBuilder:Build():Client
       :Execute(OpenEdge.Net.HTTP.RequestBuilder
        :Delete('http://localhost:16680/oemanager/applications/oepas1/agents/1144/agentStatData')
        :UsingBasicAuthentication(new OpenEdge.Net.HTTP.Credentials('PASOE Manager Application', 'username', 'password'))
        :Request
    ).

Request body example

NA

Response body example

{
  "operation": "CLEAR AGENT STAT DATA",
  "outcome": "SUCCESS",
  "result": true,
  "errmsg": "",
  "versionStr": "v12.7.0 ( 2023-04-20 )",
  "versionNo": 1
}