Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2930,6 +2930,13 @@ paths:
$ref: '#/components/responses/ErrorResponse'
operationId: get-enumerate-id-export
parameters:
- schema:
type: integer
minimum: 1
in: query
name: not_seen_for_days
description: >-
Return assets that haven't been seen in the last N days. An asset is only included if a scan that covers it has run during that period without rediscovering it, so assets that simply haven't been rescanned recently are not matched.
- schema:
$ref: '#/components/schemas/EnumExportFormats'
in: query
Expand Down Expand Up @@ -4145,6 +4152,13 @@ paths:
$ref: '#/components/responses/ErrorResponse'
operationId: get-enumerate-export
parameters:
- schema:
type: integer
minimum: 1
in: query
name: not_seen_for_days
description: >-
Return assets that haven't been seen in the last N days. An asset is only included if a scan that covers it has run during that period without rediscovering it, so assets that simply haven't been rescanned recently are not matched.
- schema:
$ref: '#/components/schemas/EnumExportFormats'
in: query
Expand Down Expand Up @@ -6103,6 +6117,13 @@ paths:
in: query
name: is_internal
description: filter by is_internal (internal vs external hosts)
- schema:
type: integer
minimum: 1
in: query
name: not_seen_for_days
description: >-
Return assets that haven't been seen in the last N days. An asset is only included if a scan that covers it has run during that period without rediscovering it, so assets that simply haven't been rescanned recently are not matched.
security:
- X-API-Key: []
description: Get enumeration content by enumerate_id
Expand Down Expand Up @@ -6384,6 +6405,13 @@ paths:
in: query
name: is_internal
description: filter by is_internal (internal vs external hosts)
- schema:
type: integer
minimum: 1
in: query
name: not_seen_for_days
description: >-
Return assets that haven't been seen in the last N days. An asset is only included if a scan that covers it has run during that period without rediscovering it, so assets that simply haven't been rescanned recently are not matched.
security:
- X-API-Key: []
description: Get All enumeration content
Expand Down Expand Up @@ -9198,6 +9226,11 @@ components:
only_ip:
type: boolean
description: Query only dns IP records
not_seen_for_days:
type: integer
minimum: 1
description: >-
Return assets that haven't been seen in the last N days. An asset is only included if a scan that covers it has run during that period without rediscovering it, so assets that simply haven't been rescanned recently are not matched.
BillingCycle:
title: BillingCycle
type: object
Expand Down
Loading