action squareup_retrieve_catalog_object { label: "RetrieveCatalogObject" description: "Returns a single [CatalogItem](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogItem) as a\n[CatalogObject](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogObject) based on the provided ID. The returned\nobject includes all of the relevant [CatalogItem](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogItem)\ninformation including: [CatalogItemVariation](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogItemVariation)\nchildren, references to its\n[CatalogModifierList](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogModifierList) objects, and the ids of\nany [CatalogTax](https://developer.squareup.com/reference/square_2021-08-18/objects/CatalogTax) objects that apply to it." provider: squareup method: GET path: "/v2/catalog/object/{object_id}" encoding: json input: { type: "object" properties: { catalog_version: { type: "integer" format: "int64" } include_related_objects: { type: "boolean" } object_id: { type: "string" } } required: ["object_id"] additionalProperties: false } output: { type: "object" } }