POST api/CompoundQuery/Search
Request Information
URI Parameters
None.
Body Parameters
CompundQueryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| PaperType | string |
None. |
|
| Heading | string |
None. |
|
| SelectedPreSavedQuery | integer |
None. |
|
| Take | integer |
None. |
|
| Skip | integer |
None. |
|
| OrderBy | string |
None. |
|
| OrderByType | string |
None. |
|
| QueryList | Collection of CompundQueryInnerModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"paperType": "sample string 2",
"heading": "sample string 3",
"selectedPreSavedQuery": 4,
"take": 5,
"skip": 6,
"orderBy": "sample string 7",
"orderByType": "sample string 8",
"queryList": [
{
"criteria": "sample string 1",
"operator": "sample string 2",
"value": "sample string 3",
"logicOperator": "sample string 4",
"tableId": 5
},
{
"criteria": "sample string 1",
"operator": "sample string 2",
"value": "sample string 3",
"logicOperator": "sample string 4",
"tableId": 5
}
]
}
multipart/form-data, application/octet-stream
Sample:
{"name":"sample string 1","paperType":"sample string 2","heading":"sample string 3","selectedPreSavedQuery":4,"take":5,"skip":6,"orderBy":"sample string 7","orderByType":"sample string 8","queryList":[{"criteria":"sample string 1","operator":"sample string 2","value":"sample string 3","logicOperator":"sample string 4","tableId":5},{"criteria":"sample string 1","operator":"sample string 2","value":"sample string 3","logicOperator":"sample string 4","tableId":5}]}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Object |
None. |
|
| Msg | Object |
None. |
|
| token | Object |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"result": {},
"msg": {},
"token": {},
"data": {}
}
multipart/form-data, application/octet-stream
Sample:
{"result":{},"msg":{},"token":{},"data":{}}