POST api/DataCenter/GetDataSet/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
QueryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string |
None. |
|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
|
| SortField | string |
None. |
|
| Params | Collection of KeyValueDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "sample string 1",
"pageIndex": 2,
"pageSize": 3,
"sortField": "sample string 4",
"params": [
{
"id": "sample string 1",
"name": "sample string 2",
"value": "sample string 3"
},
{
"id": "sample string 1",
"name": "sample string 2",
"value": "sample string 3"
}
]
}
application/xml, text/xml
Sample:
<QueryDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Id>sample string 1</Id>
<pageIndex>2</pageIndex>
<pageSize>3</pageSize>
<SortField>sample string 4</SortField>
<Params>
<KeyValueDto>
<ID>sample string 1</ID>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</KeyValueDto>
<KeyValueDto>
<ID>sample string 1</ID>
<Name>sample string 2</Name>
<Value>sample string 3</Value>
</KeyValueDto>
</Params>
</QueryDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CallResultOfDataSet| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | DataSet |
None. |
|
| Exception | Exception |
None. |
|
| Message | Message |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": null,
"exception": {
"ClassName": "System.Exception",
"Message": null,
"Data": null,
"InnerException": null,
"HelpURL": "sample string 1",
"StackTraceString": null,
"RemoteStackTraceString": null,
"RemoteStackIndex": 0,
"ExceptionMethod": null,
"HResult": 3,
"Source": "sample string 2",
"WatsonBuckets": null
},
"message": 0
}