Assessment Scan: Recurring
Related Endpoints:
Note
Scheduled scans do not run if they are in the scan owner's trash folder.
To schedule a recurring scan, specify the following settings
parameters in the request body:
Parameter | Required? | Action |
---|---|---|
settings.enabled | No | Set this parameter to true to enable the schedule. If your request omits this parameter, but includes the other schedule parameters, Vulnerability Management sets the parameter to true automatically. |
settings.starttime | Yes | Use this parameter to specify the first date on which the scan schedule is active and the time at which recurring scans launch based on the rrules parameter. This parameter must be in the following format:YYYYMMDDTHHMMSS For more information about this format, see Date Formats. |
settings.rrules | Yes | Use this parameter to specify the interval at which the scan repeats. For more information, see rrules Format. |
settings.timezone | Yes | Use this parameter to specify the timezone of the scheduled start time for the scan (as specified in the starttime parameter). For a full list of supported timezone values, use the GET /scans/timezones endpoint. |
rrules Format
The settings.rrules
parameter supports a string value in the following format:
FREQ=value;INTERVAL=value;BYDAY=value
This format consists of the following elements:
Element | Description | Supported Values |
---|---|---|
FREQ | Specifies how often you want the scan to repeat. | Supported frequency codes are:
|
INTERVAL | Specifies how often you want the scan to repeat. | An integer representing how many of the specified unit of time should elapse between scans. For example, if you specify 3 for a weekly scan, the scan repeats every three weeks. |
BYDAY | Specifies the day or days of the week on which you want the scan to repeat. | Supported month codes are:
MO,WE,FR . |
For example:
Scan Recurrence | rrules Value |
---|---|
Run once on Monday | FREQ=ONETIME;INTERVAL=0;BYDAY=MO |
Run every week on Monday | FREQ=WEEKLY;INTERVAL=1;BYDAY=MO |
Run every month on the specified Monday | FREQ=MONTHLY;INTERVAL=1;BYDAY=MO |
Request Body
This example request body configures an Advanced Network scan to run every Monday at 1 p.m. Mountain time.
This example also uses a target group, instead of listing individual targets.
{
"uuid": "329692d8-ea42-4e96-acd6-7da6c3571c27d24bd260ef5f9e66",
"settings": {
"name": "western-region-assets",
"enabled": true,
"starttime": "20181017T130000",
"rrules": "FREQ=WEEKLY;INTERVAL=1;BYDAY=MO",
"timezone": "US/Mountain",
"target_groups": [2, 8, 12],
"emails": "[email protected],[email protected]",
"acls": [
{
"permissions": 0,
"owner": null,
"display_name": null,
"name": null,
"id": null,
"type": "default"
},
{
"permissions": 16,
"owner": 0,
"display_name": "Analyst Group",
"name": "Analyst Group",
"id": 1,
"type": "group"
},
{
"permissions": 128,
"owner": 1,
"display_name": "[email protected]",
"name": "[email protected]",
"id": 2,
"type": "user"
}
]
}
}
Updated 22 days ago