Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.03 KB

batch-retrieve-inventory-counts-response.md

File metadata and controls

32 lines (25 loc) · 1.03 KB

Batch Retrieve Inventory Counts Response

Structure

BatchRetrieveInventoryCountsResponse

Fields

Name Type Tags Description
Errors IList<Models.Error> Optional Any errors that occurred during the request.
Counts IList<Models.InventoryCount> Optional The current calculated inventory counts for the requested objects
and locations.
Cursor string Optional The pagination cursor to be used in a subsequent request. If unset,
this is the final response.

See the Pagination guide for more information.

Example (as JSON)

{
  "errors": [],
  "counts": [
    {
      "catalog_object_id": "W62UWFY35CWMYGVWK6TWJDNI",
      "catalog_object_type": "ITEM_VARIATION",
      "state": "IN_STOCK",
      "location_id": "59TNP9SA8VGDA",
      "quantity": "79",
      "calculated_at": "2016-11-16T22:28:01.223Z"
    }
  ]
}