New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v3/data-alerts/{dataAlertId}/executions/{executionId}/documents
Returns the documents generated by the specified execution of the data alert.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| dataAlertId |
The data alert ID. | string |
Required |
| executionId |
The execution ID. | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ScheduledDocument
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Scheduled document ID. | string |
None. |
| TaskId |
Scheduled task or data alert ID. | string |
None. |
| DocumentName |
Document name. | string |
None. |
| DocumentFormat |
Document format. | string |
None. |
| Data |
Document binary data. | Collection of byte |
None. |
| MimeType |
File type. | string |
None. |
| DateCreated |
Obsolete since R2 2020. Use DateCreatedUtc property instead. The DateTime created value in the server local timezone. | date |
None. |
| DateCreatedUtc |
The DateTime created value in the UTC. | date |
None. |
| ReportId |
Report ID. | string |
None. |
| Error |
Contains any errors which might occur during document creation. | string |
None. |
Response Formats
application/json
json
[
{
"Id": "55363acbf0c",
"TaskId": "b8baca6f61d",
"DocumentName": "HR Reports",
"DocumentFormat": "Pdf",
"Data": "QEA=",
"MimeType": "application/pdf",
"DateCreated": "2026-08-12T14:15:59.9586332+00:00",
"DateCreatedUtc": "2026-08-12T14:15:59.9586332Z",
"ReportId": "c2af9e02025",
"Error": "Error 230"
},
{
"Id": "3900f8e1647",
"TaskId": "75e558b76e8",
"DocumentName": "Financial Reports",
"DocumentFormat": "Pdf",
"Data": "QEA=",
"MimeType": "application/pdf",
"DateCreated": "2026-08-12T14:15:59.959555+00:00",
"DateCreatedUtc": "2026-08-12T14:15:59.959555Z",
"ReportId": "ccda41c5e44",
"Error": "Error 245"
}
]