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 AMSI configuration

Prev Next

Use the following API request to update the AMSI module server configuration settings.

Request

HTTP Verb

Path

Parameters

PUT

hx/api/services/config/tree

?node_name=/config/amsi

Request Headers

Header Property

Value

Content-Type

application/json

X-FeApi-Token

{{ random token string }}

The request body contains a JSON object with a data property containing an array of JSON objects for each configuration setting to update. The following example updates the logging level setting to info:

Request Body

{
    "data": [
        {
            "default_value": "notice",
            "name": "/config/amsi/logging/level", 
            "type": "string",
            "value": "info"
        }
    ]
}