New to Telerik Report Server? Start a free 30-day trial
GET api/reportserver/v2/dataconnections
Returns a collection of all data connections.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of DataConnection
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Data connection identifier. | string |
Required |
| Name |
Specifies the data connection name. | string |
Required |
| Description |
Specifies the data connection description. | string |
None. |
| Provider |
Specifies the data connection provider. | string |
Required |
| ConnectionString |
Specifies the data connection connection string. | string |
Required |
Response Formats
application/json, text/json
json
[
{
"Id": "14f93069cc8",
"Name": "Northwind Oracle Connection",
"Description": "Displayed to help users understand the purpose of this item.",
"Provider": "System.Data.OracleClient",
"ConnectionString": "Data Source=Northwind;User Id=sa;Password=P@ssw0rd!;"
},
{
"Id": "0e5529ccdbb",
"Name": "Northwind SQL Connection",
"Description": "Displayed to help users understand the purpose of this item.",
"Provider": "System.Data.SqlClient",
"ConnectionString": "Data Source=.;Initial Catalog=Northwind;Integrated Security=True"
}
]