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 TopResponse
Supported Media Types
- application/json
- application/xml
200 Response
OK
The operation completed successfully.
Root Schema : AVClientInfo
Type:
Show Source
object
-
enabled:
boolean
true if the virus scanner is enabled; false otherwise.
-
host:
string
Host for the virus scanner ICAP server.
-
port:
integer(int32)
Port for the virus scanner ICAP server.
400 Response
Bad Request
Failed to delete the antivirus details.
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%