Get Allow List

Get Allow List

Get list of files allowed in data center for execution or viewing. If empty value of sha256 is passed, it will be ignored and the api will return all allow-listed files.

Request
URI
GET
https://api.example.com/napp/api/v1/malware-prevention/allow-list
COPY
Query Parameters
string
cursor
Optional

Opaque cursor to be used for getting next page of records (supplied by current result page).

integer
page_size
Optional

Maximum number of results to return in this page (server may return fewer).

string of array
sha256
Optional

Use this request param for specifying sha256 hash to filter. If this parameter is passed multiple times, OR condition will be assumed. If value passed is empty string, it will be considered as valid input for filtering.


Authentication
This operation uses the following authentication methods.
Responses
200

Successful operation

Returns AllowedFileDetailsList of type(s) application/json
This response body class contains all of the following: ListResult , InlineAllowedFileDetailsList1
{
    "_self": {},
    "_links": [
        {
            "href": "string",
            "action": "string",
            "rel": "string"
        }
    ],
    "_schema": "string",
    "result_count": 0,
    "sort_by": "string",
    "sort_ascending": false,
    "cursor": "string",
    "results": [
        {
            "file_name": [],
            "sha256": "fa35e2051ae8f152a1745d2455606a8e1f07c20abf848f8346549cb2f3986b0f",
            "verdict": "UNINSPECTED",
            "score": -1,
            "number_of_hits": 1
        },
        {
            "file_name": [],
            "sha256": "fa35e2051ae8f152a1745d2455606a8e1f07c20abf848f8346549cb2f3986b0f",
            "verdict": "UNINSPECTED",
            "score": -1,
            "number_of_hits": 1
        }
    ]
}