List Supported Antivirus Products
Service name: list_supported_av_products
Base URL
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_supported_av_products
Description
Lists display name and identifier for all supported antivirus products.
Parameters
Optional parameters
Add optional parameters after the required parameters in the base URL.
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_supported_av_products&optional_parameters={parameter-value}
| Parameter | Description | Type | Options | Default | 
|---|---|---|---|---|
| describe | Optional. Returns a description of the entered call, the available parameters, an example of its output, and returned fields with descriptions. | boolean | true | 0 | 
Examples
List supported antivirus products
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_supported_av_products
Example response
<?xml version="1.0" ?>
<products>
<product>
<name>McAfee Total Protection</name>
<id>mcafee</id>
</product>
.....
<product>
<name>Trend AntiVirus</name>
<id>trend</id>
</product>
.....
<product>
<name>Sophos Anti-Virus</name>
<id>sophos</id>
</product>
<product>
<name>Symantec AntiVirus</name>
<id>symantec__u</id>
</product>
<product>
...
</product>
</product>
</result>Returned fields
Field  | Type  | Can Be Empty  | Description  | 
|---|---|---|---|
name  | string  | no  | Displayable string of the product name  | 
id  | string  | no  | Unique identifier for this particular product. This should be used to identify the product in subsequent API calls.  | 
Updated 3 months ago