[]
Gets the raw data.
[HttpGet]
[Route("{dataSourceKey}")]
public virtual IActionResult GetRawData(string dataSourceKey, int? skip = null, int? top = null)
<HttpGet>
<Route("{dataSourceKey}")>
Public Overridable Function GetRawData(dataSourceKey As String, Optional skip As Integer? = Nothing, Optional top As Integer? = Nothing) As IActionResult
| Type | Name | Description |
|---|---|---|
| string | dataSourceKey | The data source key specifies the data. |
| int? | skip | A number value which is used to exclude the first n entities. n is specified by this value |
| int? | top | A number value which indicates the count of the data requested. |
| Type | Description |
|---|---|
| IActionResult | The raw data and the total count of all the raw data. |