List Scanning Agents
GET/scanning-agents/
Request
Query Parameters
and
- andor
- orconnected
- Connectedconnected_with_issues
- Connected with issuesdisconnected
- Disconnected
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.
scopes_logical_operator string
Possible values: [and
, or
]
Logical operator to apply between agent scopes:
(Defaults to or
)
search string
A search term.
status integer[]
Possible values: [connected
, connected_with_issues
, disconnected
]
Filter by status
team string[]
A unique Base58 value identifying this object.
Responses
- 200
- 400
- 401
- 500
- application/json
- Schema
- Example (from schema)
Schema
Array [
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[]
id stringrequired
name stringrequired
Possible values: <= 255 characters
installer_generated booleanrequired
teams
object[]
nullable
id string
A unique Base58 value identifying this object.
name stringrequired
online booleanrequired
fallback booleanrequired
rx_bytes integerrequired
tx_bytes integerrequired
latest_handshake integerrequired
{
"count": 6,
"page_total": 1,
"page": 1,
"length": 10,
"results": [
{
"id": "string",
"name": "string",
"installer_generated": true,
"teams": [
{
"id": "string",
"name": "string"
}
],
"online": true,
"fallback": true,
"rx_bytes": 0,
"tx_bytes": 0,
"latest_handshake": 0
}
]
}
- 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...