Scan Modes

Get scan mode

Retrieves a specific scan mode by its unique identifier

get/api/scan-modes/{scanModeId}

Path parameters

scanModeIdstring required

Response

The scan mode object

idstring required

The unique identifier of the entity.

creationDatestring

Represents an instant in time as an ISO 8601 string.

lastEditInstantstring

Represents an instant in time as an ISO 8601 string.

namestring required

The name of the scan mode.

descriptionstring required

A description of the scan mode's purpose or behavior.

cronstring required

A cron expression defining the scan schedule.

Example response

{
  "id": "entity123",
  "creationDate": "2023-10-31T12:34:56.789Z",
  "lastEditInstant": "2023-10-31T12:34:56.789Z",
  "name": "Daily Backup Scan",
  "description": "Scans for new backup data every day at midnight",
  "cron": "0 0 * * *"
}

Changes