New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v3/reports/{reportId}/data-items
Returns the data items for the report with the specified ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| reportId |
The report ID. | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReportDataItem
| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Gets or sets the display label for the data item. | string |
None. |
| Value |
Gets or sets the exact internal report item name to use in a data alert rule. | string |
None. |
| Type |
Gets or sets the type of the data item (Table, Crosstab, List, Graph, or Map). | string |
None. |
| Children |
Gets or sets the child element names: column/textbox names for table-based items, series names for Graph and Map. | Collection of string |
None. |
Response Formats
application/json
json
[
{
"Name": "Financial Reports",
"Value": "100",
"Type": "Table",
"Children": [
"OrderDate",
"TotalSales"
]
},
{
"Name": "HR Reports",
"Value": "100",
"Type": "Table",
"Children": [
"TotalSales",
"CustomerName"
]
}
]