POST v2/rental/sku/{rentalSKUID}/inventory/list
Retrieve list of Rental Inventory
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| rentalSKUID | integer |
Required |
Body Parameters
GridModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PageNumber |
Page number |
integer |
None. |
| RowsPerPage |
Rows Per Page |
integer |
None. |
| SortField |
Sort Field |
string |
None. |
| SortDirection |
Sort Direction |
string |
None. |
| Filters |
Filter criteria |
Collection of GridFilterModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"pageNumber": 1,
"rowsPerPage": 2,
"sortField": "sample string 3",
"sortDirection": "sample string 4",
"filters": [
{
"columnName": "sample string 1",
"operator": "sample string 2",
"searchValue": "sample string 3",
"combinationLogic": "sample string 4"
},
{
"columnName": "sample string 1",
"operator": "sample string 2",
"searchValue": "sample string 3",
"combinationLogic": "sample string 4"
}
]
}
Response Information
Resource Description
RentalInventoryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| RentalInventoryID |
Unique identifier of then Rental Inventory |
integer |
None. |
| Barcode |
Barcode |
string |
None. |
| ZoneName |
Location Zone |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"rentalInventoryID": 1,
"barcode": "sample string 2",
"zoneName": "sample string 3"
}