> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Schedule Item

Retrieve all of the scheduling data about a configured scan, such as the time and date when the scan is scheduled to run, and how frequently.
Note that for recurring scans, all individual occurrences of the scan share a common schedule item.

<Note>
  External Documentation

  To learn more, visit the [PortSwigger Burp Suite DAST documentation](https://portswigger.net/burp/extensibility/enterprise/graphql-api/scheduleitem.html).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description |
  | ---------------- | ----------- |
  | Schedule Item ID | -           |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"schedule_item": {
			"id": "4",
			"schedule": {
				"rrule": "FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE,FR,SU",
				"initial_run_time": "2020-04-1T12:00:00Z"
			},
			"scheduled_run_time": "2020-04-10T12:00:00Z"
		}
	}
}
```

## Workflow Library Example

[Get Schedule Item with Portswigger Burp Suite Dast and Send Results Via Email](https://library.blinkops.com/workflows/get-schedule-item-with-portswigger-burp-suite-dast-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-schedule-item-with-portswigger-burp-suite-dast-and-send-results-via-email/canvas" />
</div>
