GET api/{siteCode}/Warehouse/GetAllSKUQuantitiesNotQuarantined?custAccNum={custAccNum}

Gets all SKU quantities for the specified account number where items are not located in an area that includes the word QUARANTINE.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
siteCode

The site code will be issued when instruction has been received from our mutual client.

integer

Required

custAccNum

The customer account number.

string

Required

Body Parameters

None.

Response Information

Resource Description

A list containing SKU quantity details

Collection of SKUQuantity
NameDescriptionTypeAdditional information
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:
[
  {
    "skuNumber": "sample string 1",
    "skuName": "sample string 2",
    "active": 3,
    "quantity": 4,
    "allocated": 5,
    "barcode": "sample string 6"
  },
  {
    "skuNumber": "sample string 1",
    "skuName": "sample string 2",
    "active": 3,
    "quantity": 4,
    "allocated": 5,
    "barcode": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSKUQuantity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <SKUQuantity>
    <skuNumber>sample string 1</skuNumber>
    <skuName>sample string 2</skuName>
    <active>3</active>
    <quantity>4</quantity>
    <allocated>5</allocated>
    <barcode>sample string 6</barcode>
  </SKUQuantity>
  <SKUQuantity>
    <skuNumber>sample string 1</skuNumber>
    <skuName>sample string 2</skuName>
    <active>3</active>
    <quantity>4</quantity>
    <allocated>5</allocated>
    <barcode>sample string 6</barcode>
  </SKUQuantity>
</ArrayOfSKUQuantity>