The new docs.trellix.com offers a modernized UI and AI-powered features like conversational searches. Content is currently available only in English. Other languages will be available in mid-October 2026. We hope you enjoy the new experience.

Update Configuration

Prev Next

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

hx/api/services/config/tree

?node_name=/config/procguard-watcher

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"
        }
    ]
}