GET api/reportserver/v3/scheduled-tasks
Returns a collection of all scheduled tasks.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ScheduledTask
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Provides the scheduled task identifier. | string |
Required |
| UserId |
Specifies the ID of the user who has created the scheduled task. | string |
None. |
| Name |
Gets or sets the scheduled task name. | string |
Required |
| Enabled |
Gets or sets whether the scheduled task is either enabled or disabled. | boolean |
None. |
| Reports |
Gets or sets the reports which are rendered by the scheduled task. | Collection of ScheduledTaskReport |
Required |
| StartDate |
Obsolete since R2 2020. Use StartDateUtc property instead. Gets or sets the start date of the scheduled task in the author local time zone. | date |
None. |
| StartDateUtc |
Gets or sets the start date of the scheduled task in UTC. | date |
None. |
| BaseUtcOffset |
Gets or sets the UTC offset to the local timezone of the scheduled task author. Used for the mail templates date time type tokens. | decimal number |
None. |
| RecurrenceRule |
Gets or sets recurrence rule for the scheduled task. | RecurrenceRule |
None. |
| LocalUsersMailTemplate |
Gets or sets the mail template for local users. Set to null to use the default template. | TaskMailTemplateModel |
None. |
| ExternalUsersMailTemplate |
Gets or sets the mail template for external users. Set to null to use the default template. | TaskMailTemplateModel |
None. |
| ExternalEmails |
Gets or sets the emails of the external users to whom the report document should be sent. | Collection of string |
None. |
| SubscriberIds |
Provides a list of IDs of the users subscribed to the data alert. | Collection of string |
None. |
Response Formats
application/json
[
{
"Id": "2ae82db98ec",
"UserId": "9e17f9b42d1945e8821f621a2f8cd1a8",
"Name": "HR Reports",
"Enabled": true,
"Reports": [
{
"ReportId": "6b7c90b0480",
"DocumentFormat": "Pdf",
"Parameters": {
"IsActive": true,
"OrderDate": "2024-01-15"
}
},
{
"ReportId": "6285f87f1f4",
"DocumentFormat": "Pdf",
"Parameters": {
"IsActive": true,
"OrderDate": "2024-01-15"
}
}
],
"StartDate": "2026-08-12T14:16:00.0056476+00:00",
"StartDateUtc": "2026-08-12T14:16:00.0056476Z",
"BaseUtcOffset": 394.1,
"RecurrenceRule": null,
"LocalUsersMailTemplate": {
"Subject": "Your scheduled report is ready",
"Body": "The report you subscribed to has been generated and is attached to this email."
},
"ExternalUsersMailTemplate": {
"Subject": "Your scheduled report is ready",
"Body": "The report you subscribed to has been generated and is attached to this email."
},
"ExternalEmails": [
"john.smith@example.com",
"maria.garcia@example.com"
],
"SubscriberIds": [
"2d40c15131c84366917d55c611413cc7",
"6425ef06b008474aa58ed547cd003475"
]
},
{
"Id": "3bc4bdb3e61",
"UserId": "0577f56eee884e0db8598d83812e50fc",
"Name": "Marketing Reports",
"Enabled": true,
"Reports": [
{
"ReportId": "62ce4d884e5",
"DocumentFormat": "Pdf",
"Parameters": {
"OrderDate": "2024-01-15",
"Region": "North America"
}
},
{
"ReportId": "c798b3f14a9",
"DocumentFormat": "Pdf",
"Parameters": {
"OrderDate": "2024-01-15",
"Region": "North America"
}
}
],
"StartDate": "2026-08-12T14:16:00.0062851+00:00",
"StartDateUtc": "2026-08-12T14:16:00.0062851Z",
"BaseUtcOffset": 415.1,
"RecurrenceRule": null,
"LocalUsersMailTemplate": {
"Subject": "Your scheduled report is ready",
"Body": "The report you subscribed to has been generated and is attached to this email."
},
"ExternalUsersMailTemplate": {
"Subject": "Your scheduled report is ready",
"Body": "The report you subscribed to has been generated and is attached to this email."
},
"ExternalEmails": [
"maria.garcia@example.com",
"alex.johnson@example.com"
],
"SubscriberIds": [
"20542e250e8d46e79281f3d172480753",
"2b52a01a0b124eeb8864b4bec275f709"
]
}
]