New to Telerik Report Server? Start a free 30-day trial
POST api/reportserver/v3/data/sql/parameters
Returns the required parameters for the specified data connection.
Request Information
URI Parameters
None.
Body Parameters
Query with parameters model.
| Name | Description | Type | Additional information |
|---|---|---|---|
| QueryInfo |
No documentation available. | QueryInfo |
Required |
| Parameters |
No documentation available. | Collection of QueryInfoParameter |
None. |
Request body formats
application/json, text/json, application/*+json
json
{
"QueryInfo": {
"SelectCommandType": "Text",
"SelectCommand": "SELECT * FROM Orders",
"CommandTimeout": 677,
"Name": "Northwind Oracle Connection",
"Provider": "System.Data.OracleClient",
"ConnectionString": "Data Source=Northwind;User Id=sa;Password=P@ssw0rd!;"
},
"Parameters": [
{
"Name": "IsActive",
"Value": true,
"DbType": "Boolean"
},
{
"Name": "OrderDate",
"Value": "2024-01-15",
"DbType": "DateTime"
}
]
}
Response Information
Resource Description
None.