| Name
|
Data Type | Description |
| pgsiz
|
int |
max records to return per response; use "next" or "prev" link to paginate
|
| pgnum
|
int |
considering pgsiz, returns the pgnum-th page, 1-indexed
|
| rql
|
string |
see RQL documentation
|
| sort
|
string |
see RQL documentation
|
| orderidcontains
|
string |
matches any part of an order id, such as "53" matches order ids 7653, 7536 and 5376 |
| receiverid
|
int |
|
|
Type |
Description |
| TotalResults |
int
|
|
| ResourceList |
IList<Order.Models.OrderSummary>
|
|
| OrderId |
int
|
|
| ReferenceNum |
string
|
|
| PoNum |
string
|
|
| FullyAllocated |
bool
|
|
| CustomerIdentifier |
Generic.Models.CustomerIdentifier
|
|
| ExternalId |
string
|
|
| Name |
string
|
|
| Id |
int
|
|
| FacilityIdentifier |
Generic.Models.FacilityIdentifier
|
|
| Name |
string
|
|
| Id |
int
|
|
| CreationDate |
DateTime?
|
|
| IsClosed |
bool
|
|
| Links |
IList<WebApi.Hal.Link>
|
|
|
-
/rels/orders/order
|
|
| Links |
IList<WebApi.Hal.Link>
|
|
|
-
next |
|
|
-
prev |
|
Sample accept: application/hal+json
{
"totalResults": 1,
"_embedded": {
"item": [
{
"orderId": 1,
"referenceNum": "str",
"poNum": "str",
"fullyAllocated": true,
"customerIdentifier": {
"externalId": "str",
"name": "str",
"id": 3
},
"facilityIdentifier": {
"name": "str",
"id": 2
},
"creationDate": "2016-12-25T23:00:00",
"isClosed": true
}
]
}
}