Batch Retrieve Catalog Objects Request
Name | Type | Tags | Description |
---|---|---|---|
object_ids |
Array<String> |
Required | The IDs of the CatalogObjects to be retrieved. |
include_related_objects |
TrueClass | FalseClass |
Optional | If true , the response will include additional objects that are related to therequested objects. Related objects are defined as any objects referenced by ID by the results in the objects fieldof the response. These objects are put in the related_objects field. Setting this to true ishelpful when the objects are needed for immediate display to a user. This process only goes one level deep. Objects referenced by the related objects will not be included. For example, if the objects field of the response contains a CatalogItem, its associatedCatalogCategory objects, CatalogTax objects, CatalogImage objects and CatalogModifierLists will be returned in the related_objects field of theresponse. If the objects field of the response contains a CatalogItemVariation,its parent CatalogItem will be returned in the related_objects field ofthe response. Default value: false |
catalog_version |
Integer |
Optional | The specific version of the catalog objects to be included in the response. This allows you to retrieve historical versions of objects. The specified version value is matched against the CatalogObjects' version attribute. If not included, results willbe from the current version of the catalog. |
include_deleted_objects |
TrueClass | FalseClass |
Optional | Indicates whether to include (true ) or not (false ) in the response deleted objects, namely, those with the is_deleted attribute set to true . |
include_category_path_to_root |
TrueClass | FalseClass |
Optional | Specifies whether or not to include the path_to_root list for each returned category instance. The path_to_root list consistsof CategoryPathToRootNode objects and specifies the path that starts with the immediate parent category of the returned categoryand ends with its root category. If the returned category is a top-level category, the path_to_root list is empty and is not returnedin the response payload. |
{
"include_related_objects": true,
"object_ids": [
"W62UWFY35CWMYGVWK6TWJDNI",
"AA27W3M2GGTF3H6AVPNB77CK"
],
"catalog_version": 190,
"include_deleted_objects": false,
"include_category_path_to_root": false
}