Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.1 KB

batch-retrieve-inventory-counts-request.md

File metadata and controls

29 lines (22 loc) · 1.1 KB

Batch Retrieve Inventory Counts Request

Structure

BatchRetrieveInventoryCountsRequest

Fields

Name Type Tags Description
CatalogObjectIds IList<string> Optional Filters results by CatalogObject ID.
Only applied when set. Default: unset.
LocationIds IList<string> Optional Filters results by Location ID. Only
applied when set. Default: unset.
UpdatedAfter string Optional Provided as an RFC 3339 timestamp. Returns results whose
calculated_at value is after the given time. Default: UNIX epoch
(1970-01-01T00:00:00Z).
Cursor string Optional A pagination cursor returned by a previous call to this endpoint.
Provide this to retrieve the next set of results for the original query.

See the Pagination guide for more information.

Example (as JSON)

{
  "catalog_object_ids": [
    "W62UWFY35CWMYGVWK6TWJDNI"
  ],
  "location_ids": [
    "59TNP9SA8VGDA"
  ],
  "updated_after": "2016-11-16T00:00:00.000Z"
}