New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v3/scheduled-tasks/{scheduledTaskId}/executions
Returns the execution history for the scheduled task with the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| scheduledTaskId |
The scheduled task ID. | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SchedulingExecution
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Execution ID. | string |
None. |
| DocumentIds |
Collection of document IDs created by this execution. | Collection of string |
None. |
| AlertTriggered |
Specifies if an alert has been sent by this execution. | boolean |
None. |
| ExecutionDate |
Obsolete since R2 2020. Use ExecutionDateUtc property instead. Gets or sets the execution DateTime created value in the server local timezone. | date |
None. |
| ExecutionDateUtc |
Gets or sets the execution DateTime created value in the UTC. | date |
None. |
Response Formats
application/json
json
[
{
"Id": "b2450eb83a5",
"DocumentIds": [
"a3070513276",
"f99f41316d7"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:16:00.2573776+00:00",
"ExecutionDateUtc": "2026-08-12T14:16:00.2573776Z"
},
{
"Id": "5db08e9354b",
"DocumentIds": [
"9f96f9a56bc",
"0faa6123c1d"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:16:00.2575326+00:00",
"ExecutionDateUtc": "2026-08-12T14:16:00.2575326Z"
}
]