GET api/reportserver/v2/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 SchedulingExecutionName | 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
[ { "Id": "sample string 1", "DocumentIds": [ "sample string 1", "sample string 2" ], "AlertTriggered": true, "ExecutionDate": "2024-11-13T11:07:50.0690811+00:00", "ExecutionDateUtc": "2024-11-13T11:07:50.0690811+00:00" }, { "Id": "sample string 1", "DocumentIds": [ "sample string 1", "sample string 2" ], "AlertTriggered": true, "ExecutionDate": "2024-11-13T11:07:50.0690811+00:00", "ExecutionDateUtc": "2024-11-13T11:07:50.0690811+00:00" } ]