POST GetBundle

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
request
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "barcode": "sample string 1",
  "rfid": "sample string 2",
  "token": "sample string 3",
  "function": 0
}

application/x-www-form-urlencoded

Sample:

Sample not available.

application/xml, text/xml

Sample:
<GetBundleRequest>
  <token>sample string 3</token>
  <function>AddCleanBag</function>
  <barcode>sample string 1</barcode>
  <rfid>sample string 2</rfid>
</GetBundleRequest>

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{
  "sku": "sample string 1",
  "sizeA": "sample string 2",
  "sizeB": "sample string 3",
  "description": "sample string 4",
  "quantity": 5,
  "bundledDate": "sample string 6",
  "areaBinID": "sample string 7",
  "storageDestination": 8,
  "barcode": "sample string 9",
  "valid": true,
  "message": "sample string 11"
}

application/xml, text/xml

Sample:
<GetBundleResponse>
  <valid>true</valid>
  <message>sample string 11</message>
  <sku>sample string 1</sku>
  <sizeA>sample string 2</sizeA>
  <sizeB>sample string 3</sizeB>
  <description>sample string 4</description>
  <quantity>5</quantity>
  <bundledDate>sample string 6</bundledDate>
  <areaBinID>sample string 7</areaBinID>
  <storageDestination>8</storageDestination>
  <barcode>sample string 9</barcode>
</GetBundleResponse>