Try OpenEdge Now
skip to main content
Administration Guide
REST API Reference for oemanager.war : Agent management : Update configuration properties
 

Update configuration properties

Description

Update the configuration properties in conf/openedge.properties for agents for an ABL application.

HTTP Operation

PUT

URI

//host_name:port/oemanager/applications/App_name/agents/properties
{"prop_name"=value[, "prop_name"=value[,...]]}
"prop_name"=value[, prop_name"=value[,...]]
Set one or more properties expressed as name/value pairs in a comma-separated list. See the /conf/openedge.properties.README file for a description of properties and their possible values.

Media type

application/vnd.progress+json

Response codes

200 Success
500 Unexpected Server Error

Command-line example

curl -X PUT -v http://localhost:16680/oemanager/applications/pas1/agents/properties
-d '{"collectMetrics":0}' -H "Content-Type: application/vnd.progress+json"

Request body example

{"collectMetrics":0}

Response body example

NA