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}
ParameterDescriptionTypeOptionsDefault
describeOptional. Returns a description of the entered call, the available parameters, an example of its output, and returned fields with descriptions.booleantrue0

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.