Enable/disable TLC feature

Prev Next

To enable/disable TLC feature, send the following request:

POST https://<IA_IP_address>/config/v1/tlc/serverstatus

Options

  • IA_IP_address—The IP address of the NDR appliance running the NDR API.

Example

POST https://xxx.xxx.xxx.xxx/config/v1/tlc/serverstatus

cURL code sample: Get config and health information

curl -k -u <username>:<password> -XPOST-XPOST http://xxx.xxx.xxx.xxx/config/v1/tlc/serverstatus -d '{"enable":"x"}' 

This cURL sample includes the following options:

  • -X POST—Specifies using the GET method.

  • -u username:password—Specifies the username and password of the NDR appliance.

  • http://xxx.xxx.xxx.xxx/config/v1/tlc/info—The certificate request URL. Replace xxx.xxx.xxx.xxx with the IP address of your NDR appliance.

  • -d—Specifies the header of the request API.

  • Enable:"x" , where "x" is 1 or 0.

Response

Response message; Successfully enabled/disabled tlc server

Results

This example enable/disable TLC feature in your NDR appliance.