Delete Antivirus

delete

/essbase/rest/v1/filescanner

Removes the antivirus details for scanning files.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK

The operation completed successfully.

Body ()
Root Schema : AVClientInfo
Type: object
Show Source

400 Response

Bad Request

Failed to delete the antivirus details.

Back to Top

Examples

The following example shows how to delete the antivirus scanner configuration for Essbase.

This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat.

Script with cURL Command

call properties.bat
curl -X DELETE "https://myserver.example.com:9000/essbase/rest/v1/filescanner" -H Accept:application/json -H Content-Type:application/json -u %User%:%Password%
Back to Top