New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v1/executions/dataalerts/{dataAlertId}
Returns a collection of all executions by a data alert.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dataAlertId |
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, text/json
json
[
{
"Id": "74876a7b47e",
"DocumentIds": [
"6f5dff8dcbf",
"f01f534a110"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:15:52.577087+00:00",
"ExecutionDateUtc": "2026-08-12T14:15:52.577087Z"
},
{
"Id": "9aa8837b1a4",
"DocumentIds": [
"6c086176ca5",
"21277c038b6"
],
"AlertTriggered": true,
"ExecutionDate": "2026-08-12T14:15:52.577087+00:00",
"ExecutionDateUtc": "2026-08-12T14:15:52.577087Z"
}
]