POST api/Orders/Search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RequireTotalCount | boolean |
None. |
|
| RequireGroupCount | boolean |
None. |
|
| IsCountQuery | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| Sort | Collection of SortingInfo |
None. |
|
| Group | Collection of GroupingInfo |
None. |
|
| Filter | Collection of Object |
None. |
|
| TotalSummary | Collection of SummaryInfo |
None. |
|
| GroupSummary | Collection of SummaryInfo |
None. |
|
| Select | Collection of string |
None. |
|
| PreSelect | Collection of string |
None. |
|
| RemoteSelect | boolean |
None. |
|
| RemoteGrouping | boolean |
None. |
|
| ExpandLinqSumType | boolean |
None. |
|
| PrimaryKey | Collection of string |
None. |
|
| DefaultSort | string |
None. |
|
| StringToLower | boolean |
None. |
|
| PaginateViaPrimaryKey | boolean |
None. |
|
| SortByPrimaryKey | boolean |
None. |
|
| AllowAsyncOverSync | boolean |
None. |
Body Parameters
OrderSearchDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderStatusId | OrderStatusEnum |
None. |
|
| StatusIds | Collection of integer |
None. |
|
| Manufacturer | string |
None. |
|
| PartNumber | string |
None. |
|
| ReferenceCode | string |
None. |
|
| StockCode | string |
None. |
|
| PartDescription | string |
None. |
|
| OrderOwner | string |
None. |
|
| ContactName | string |
None. |
|
| IncludeDeleted | boolean |
None. |
|
| OnlyDeleted | boolean |
None. |
|
| IncludeAdditionalRepOrders | boolean |
None. |
|
| OnlyAdditionalRepOrders | boolean |
None. |
|
| IncludeAllRepsOrders | boolean |
None. |
|
| OnlyAllRepsOrders | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderStatusId": 1,
"StatusIds": [
1,
2
],
"Manufacturer": "sample string 1",
"PartNumber": "sample string 2",
"ReferenceCode": "sample string 3",
"StockCode": "sample string 4",
"PartDescription": "sample string 5",
"OrderOwner": "sample string 6",
"ContactName": "sample string 7",
"IncludeDeleted": true,
"OnlyDeleted": true,
"IncludeAdditionalRepOrders": true,
"OnlyAdditionalRepOrders": true,
"IncludeAllRepsOrders": true,
"OnlyAllRepsOrders": true
}
text/html, multipart/form-data, application/zip
Sample:
{"OrderStatusId":1,"StatusIds":[1,2],"Manufacturer":"sample string 1","PartNumber":"sample string 2","ReferenceCode":"sample string 3","StockCode":"sample string 4","PartDescription":"sample string 5","OrderOwner":"sample string 6","ContactName":"sample string 7","IncludeDeleted":true,"OnlyDeleted":true,"IncludeAdditionalRepOrders":true,"OnlyAdditionalRepOrders":true,"IncludeAllRepsOrders":true,"OnlyAllRepsOrders":true}
application/xml, text/xml
Sample:
<OrderSearchDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DentaCad.DTO">
<ContactName>sample string 7</ContactName>
<IncludeAdditionalRepOrders>true</IncludeAdditionalRepOrders>
<IncludeAllRepsOrders>true</IncludeAllRepsOrders>
<IncludeDeleted>true</IncludeDeleted>
<Manufacturer>sample string 1</Manufacturer>
<OnlyAdditionalRepOrders>true</OnlyAdditionalRepOrders>
<OnlyAllRepsOrders>true</OnlyAllRepsOrders>
<OnlyDeleted>true</OnlyDeleted>
<OrderOwner>sample string 6</OrderOwner>
<OrderStatusId>Uncommitted</OrderStatusId>
<PartDescription>sample string 5</PartDescription>
<PartNumber>sample string 2</PartNumber>
<ReferenceCode>sample string 3</ReferenceCode>
<StatusIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</StatusIds>
<StockCode>sample string 4</StockCode>
</OrderSearchDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |