...
- status (integer:1): Transaction status. 1 for sucess or 0 for failure/error.
- message (string:500): Contains status description of request.
- inventoryItems: Array of available inventory items.
- companyProductId (integer:20): ID of the product.
- orderItemId (integer:20): Inventory Item id.
- grade (string:100): Grade or product cut point.
- productDescription (string:200): Product description.
- quantity (integer:20): Number of available boxes.
- totalUnits (integer:20): Total units. When unit type is bunch this is the number of total bunches; when the unit type is stem this is the number of total stems.
- growerId (integer: 20): Grower or vendor ID.
- growerName (string:200): Grower or vendor name.
- boxTypeId (integer:20): Box type ID.
- boxTypeCode (string:3): Code used that corresponds to the size of the box (i.e. FB, EB, etc.).
- unitType (string:5): Unit type (Bunch or Stem).
- bunches (integer:20): Number of bunches per box.
- unitsPerBox (integer:20): Units per box or pack.
- stemsBunch (integer:20) Number of stems per bunch.
- inventoryDate (date): Inventory date.
- price (decimal:10,2): Unit price or price per individual item.
- sellFast (boolean: true/false): Indicates whether or not this item qualifies as sell fast.
- isAssorted (bolean: true/false): Indicates if this item is assorted or it has breakdowns.
- category (string: 200): Category name.
- awb (string:20): Air waybill number.
- unitCost (decimal:10,2): Unit Cost.
- landedCost (decimal: 10,2): Unit landed cost.
- reference (string:100): Item reference.
- lotNumber (integer:10): Lot number.
- markCode (string:20): Mark code or item label.
- aging (integer:20): The amount of time (in days) the item has been in inventory.
- breakdowns: An array of breakdowns (empty when isAssorted is false).
- assortedCompositionId (integer:20): Breakdown item id.
- productId (integer:20): Product id.
- productDescription (string:200): Breakdown product description.
- bunches (integer:20): Number of bunches.
- stemsBunch (integer:20): Number of stems per bunch.
- cost (decimal:10,2): Unit cost.
- price (decimal:10,2): Unit price.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
{ "message": "success", "status": "1", "inventoryItems": [ { "companyProductId": 999999, "orderItemId": 9999999, "grade": "60 Cm", "productDescription": "Agapanthus Blue Crme de la Crme 60 Cm", "quantity": 85, "totalUnits": 12240, "growerId": 21738, "growerName": "Follajes La Luna", "boxTypeId": 900, "boxTypeCode": "FB", "unitType": "Stem", "bunches": 12, "unitsPerBox": 144, "stemsBunch": 12, "inventoryDate": "2014-03-02", "price": 3.01389, "sellFast": false, "isAssorted": false, "category": "Agapanthus", "awb": "131322", "unitCost": 2, "landedCost": 2.17, "reference": "text for reference", "lotNumber": "4308", "markCode": "text for mark code", "aging": 10, "breakdowns": [ { "assorteCompositionId": 9999, "productDescription": "text for product description", "productId": 99999, "bunches": 10, "stemsBunch": 12, "cost": 0.56, "price": 1.25 } ] } ] } |
...