POST api/frmanalysebs/getQueryList
Request Information
URI Parameters
None.
Body Parameters
EntRpCustom| Name | Description | Type | Additional information |
|---|---|---|---|
| IsCount | boolean |
None. |
|
| OperOjbName | string |
None. |
|
| ShowColumns | string |
None. |
|
| Condition | string |
None. |
|
| Value1 | string |
None. |
|
| Value2 | string |
None. |
|
| Value3 | string |
None. |
|
| Value4 | string |
None. |
|
| Value5 | string |
None. |
|
| Value6 | string |
None. |
|
| PageSize | integer |
None. |
|
| PageIndex | integer |
None. |
|
| TotalCount | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"isCount": true,
"operOjbName": "sample string 2",
"showColumns": "sample string 3",
"condition": "sample string 4",
"value1": "sample string 5",
"value2": "sample string 6",
"value3": "sample string 7",
"value4": "sample string 8",
"value5": "sample string 9",
"value6": "sample string 10",
"pageSize": 11,
"pageIndex": 12,
"totalCount": 13
}
application/xml, text/xml
Sample:
<EntRpCustom xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model"> <PageIndex>12</PageIndex> <PageSize>11</PageSize> <TotalCount>13</TotalCount> <Condition>sample string 4</Condition> <IsCount>true</IsCount> <OperOjbName>sample string 2</OperOjbName> <ShowColumns>sample string 3</ShowColumns> <Value1>sample string 5</Value1> <Value2>sample string 6</Value2> <Value3>sample string 7</Value3> <Value4>sample string 8</Value4> <Value5>sample string 9</Value5> <Value6>sample string 10</Value6> </EntRpCustom>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResultOfPagedResultDataTable| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Success | boolean |
None. |
|
| Data | PagedResultDataTable |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": 1,
"success": true,
"data": {
"totalCount": 1,
"items": null
},
"message": "sample string 3"
}
application/xml, text/xml
Sample:
<ReturnResultOfPagedResultDataTableDN9A7J8d xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Epass.Model">
<Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/Epass.Vue.WebApi.Models">
<d2p1:items i:nil="true" />
<d2p1:totalCount>1</d2p1:totalCount>
</Data>
<Message>sample string 3</Message>
<Status>1</Status>
<Success>true</Success>
</ReturnResultOfPagedResultDataTableDN9A7J8d>