Try OpenEdge Now
skip to main content
Administration Guide
REST API Reference for oemanager.war : Agent management : List agents
 

List agents

Description

Get a list of all the PAS Agents available to an ABL application.

HTTP Operation

GET

URI

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

Media type

application/vnd.progress+json

Response codes

200 Success
500 Unexpected Server Error

Command-line example

curl -X GET -v http://localhost:16680/oemanager/applications/pas1/agents

Request body example

NA

Response body example

{
"result": {
"agents": [
{
"agentId": "AG-sCIVXeFSQYmcb7RcHo10Zw",
"pid": "12924",
"state": "AVAILABLE"
}
]
},
"operation": "GET AGENTS",
"versionStr": "PASOE 11.5.0",
"versionNo": 1,
"outcome": "SUCCESS",
"errmsg": ""
}