Query Search

Query Search

Full text search API.

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

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

string
included_fields
Optional

Comma separated list of fields that should be included in query result.

integer
page_size
Optional

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

string
query
Required

Search query.

boolean
sort_ascending
Optional

Sort records by ascending order.

string
sort_by
Optional

Field by which records are sorted.


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns SearchResponse of type(s) application/json
This response body class contains all of the following: ListResult , InlineSearchResponse1
{
    "_self": {},
    "_links": [
        {
            "href": "string",
            "action": "string",
            "rel": "string"
        }
    ],
    "_schema": "string",
    "result_count": 0,
    "sort_by": "string",
    "sort_ascending": false,
    "cursor": "string",
    "results": [
        {}
    ]
}