Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 946 Bytes

search-catalog-items-response.md

File metadata and controls

29 lines (20 loc) · 946 Bytes

Search Catalog Items Response

Defines the response body returned from the SearchCatalogItems endpoint.

Structure

SearchCatalogItemsResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Any errors that occurred during the request.
items CatalogObject[] | undefined Optional Returned items matching the specified query expressions.
cursor string | undefined Optional Pagination token used in the next request to return more of the search result.
matchedVariationIds string[] | undefined Optional Ids of returned item variations matching the specified query expression.

Example (as JSON)

{
  "errors": null,
  "items": null,
  "cursor": null,
  "matched_variation_ids": null
}