In addition to using the Web UI, you can also use the API to update the Process Guard Module server configuration settings.
Request
HTTP Verb | Route | Parameters |
|---|---|---|
PUT |
|
|
Request Headers
Header Property | Value |
|---|---|
Content-Type | Application/json |
X-FeApi-Token | {{generated api token value}} |
Request Body
The request body contains a JSON object with a single property data, containing an array of JSON objects for each configuration setting to update. See the following sample for updating the age limit setting:
{
"data": [
{
"default_value": "30",
"name": "/config/procguard-watcher/aging/database/age_limit",
"type": "int32",
"value": "60"
}
]
}