GET api/{siteCode}/Warehouse/GetSKUQuantityBySKUGroupNotBondedNotQuarantined?custAccNum={custAccNum}&skuNumber={skuNumber}
Gets the available quantity for the specified SKU number segregated by SKU Group where items are not located in areas including the words BOND or QUARANTINE.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteCode |
The site code will be issued when instruction has been received from our mutual client. |
integer |
Required |
| custAccNum |
The client account number. |
string |
Required |
| skuNumber |
The sku number. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
A list containing SKU quantity details
Collection of SKUQuantityGroupedBySKUGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| SKUGroup | string |
None. |
|
| skuNumber | string |
String length: inclusive between 0 and 50 |
|
| skuName | string |
String length: inclusive between 0 and 100 |
|
| active | integer |
None. |
|
| quantity | integer |
None. |
|
| allocated | integer |
None. |
|
| barcode | string |
String length: inclusive between 0 and 50 |
Response Formats
application/json, text/json
Sample:
[
{
"SKUGroup": "sample string 1",
"skuNumber": "sample string 2",
"skuName": "sample string 3",
"active": 4,
"quantity": 5,
"allocated": 6,
"barcode": "sample string 7"
},
{
"SKUGroup": "sample string 1",
"skuNumber": "sample string 2",
"skuName": "sample string 3",
"active": 4,
"quantity": 5,
"allocated": 6,
"barcode": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfSKUQuantityGroupedBySKUGroup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SKUQuantityGroupedBySKUGroup>
<skuNumber>sample string 2</skuNumber>
<skuName>sample string 3</skuName>
<active>4</active>
<quantity>5</quantity>
<allocated>6</allocated>
<barcode>sample string 7</barcode>
<SKUGroup>sample string 1</SKUGroup>
</SKUQuantityGroupedBySKUGroup>
<SKUQuantityGroupedBySKUGroup>
<skuNumber>sample string 2</skuNumber>
<skuName>sample string 3</skuName>
<active>4</active>
<quantity>5</quantity>
<allocated>6</allocated>
<barcode>sample string 7</barcode>
<SKUGroup>sample string 1</SKUGroup>
</SKUQuantityGroupedBySKUGroup>
</ArrayOfSKUQuantityGroupedBySKUGroup>