New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v3/data-alerts/{dataAlertId}/executions
Returns the execution history for the data alert with the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dataAlertId |
The data alert 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": "cd67290aed0",
"DocumentIds": [
"27b55e24f91",
"7a4dc93c392"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:15:59.9960979+00:00",
"ExecutionDateUtc": "2026-08-12T14:15:59.9960979Z"
},
{
"Id": "1918a0f0276",
"DocumentIds": [
"682dff953d7",
"a5eecd643a8"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:15:59.9965727+00:00",
"ExecutionDateUtc": "2026-08-12T14:15:59.9965727Z"
}
]