List Scan Warnings
GET/scans/warnings/
Request
Query Parameters
length integer
Number of results to return per page.
page integer
A page number within the paginated result set.
Responses
- 200
- 400
- 401
- 500
- application/json
- Schema
- Example (from schema)
Schema
Array [
disabled_http_get- GET method disabledenv_error- Postman environment errorextra_hosts- Out-of-scope requestinvalid_cookie- Invalid Cookielocal_ip- Unresolved hostnamelogin_failed- Login failednetwork_error- Network errortarget_redirect- Out-of-scope redirecttarget_status- HTTP 4XX/5XXtest_request_error- Pre-scan test errortimeout_error- Timeout errornavigation_sequence_failure- Navigation sequence failure]
count integer
Total number of results.
page_total integer
Total number of pages.
page integer
Number of the current page.
The first page is 1.
Defaults to 1 if no specific page is requested.
length integer
Number of results returned per page.
results
object[]
id stringrequired
Possible values: [disabled_http_get, env_error, extra_hosts, invalid_cookie, local_ip, login_failed, network_error, target_redirect, target_status, test_request_error, timeout_error, navigation_sequence_failure]
name stringrequired
Possible values: <= 255 characters
{
"count": 6,
"page_total": 1,
"page": 1,
"length": 10,
"results": [
{
"id": "disabled_http_get",
"name": "string"
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
<field name> string[]
non_field_errors string[]
{
"<field name>": [
"Errors related to field <field name>."
],
"non_field_errors": [
"Errors not related to any field specific field."
]
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Incorrect authentication credentials."
}
- application/json
- Schema
- Example (from schema)
Schema
detail string
{
"detail": "Unexpected error while handling your request."
}
Loading...