List Wizard Targets
GET/wizard/targets
Request
Query Parameters
length integer
Number of results to return per page.
ordering string
Which field to use when ordering the results.
page integer
A page number within the paginated result set.
search string
A search term.
Responses
- 200
- 400
- 401
- 500
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
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[]
scope_type string
Type of target.
Possible values are "single" for a web application and "api" for an API.
Defaults to "single".
url stringrequired
Possible values: <= 2048 characters
URL of the target.
target_data
object
nullable
property name* anynullable
api_scan_settings
object
nullable
property name* anynullable
login_sequence
object
nullable
property name* anynullable
{
"count": 6,
"page_total": 1,
"page": 1,
"length": 10,
"results": [
{
"scope_type": "string",
"url": "string",
"target_data": {},
"api_scan_settings": {},
"login_sequence": {}
}
]
}
- 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...