Name
|
Data Type | Description |
selectTop
|
int |
the first receiver to return from the sorted list; null = don't trim top |
selectBottom
|
int |
the last receiver to return from the sorted list; null = don't trim bottom |
rql
|
string |
applies to properties in ReceiverDigest model;
see RQL documentation
|
sort
|
string |
see RQL documentation
|
skulist
|
string |
comma-delim list of skus, match any receiver with a line item for any given sku |
skucontains
|
string |
single partial sku, match any receiver with a line item for given partial sku |
|
Type |
Description |
ResourceList |
IList<Inventory.Models.ReceiverDigestBrief>
|
|
ReceiverId |
int
|
|
CustomerIdentifier |
Generic.Models.CustomerIdentifier
|
|
ExternalId |
string
|
|
Name |
string
|
|
Id |
int
|
|
FacilityIdentifier |
Generic.Models.FacilityIdentifier
|
|
Name |
string
|
|
Id |
int
|
|
Status |
Common.Enum.WarehouseTransactionApiStatus
|
|
|
- 0: Open |
Has not yet been confirmed |
|
- 1: Closed |
Has been confirmed |
|
- 2: Canceled |
Has been canceled |
CanConfirm |
bool
|
true if the receiver can be confirmed
|
CanUnconfirm |
bool
|
true if the receiver can be unconfirmed
|
Sample accept: application/hal+json
{
"_embedded": {
"item": [
{
"receiverId": 1,
"customerIdentifier": {
"externalId": "str",
"name": "str",
"id": 3
},
"facilityIdentifier": {
"name": "str",
"id": 2
},
"status": 0,
"canConfirm": true,
"canUnconfirm": true
}
]
}
}