action vtex_productand_trade_policy { label: "Get Product and its general context" description: "Retrieves a specific product's general information as name, description and the trade policies that it is included." provider: vtex method: GET path: "/api/catalog_system/pvt/products/productget/{productId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } productId: { type: "integer" } } required: ["Accept", "Content-Type", "productId"] additionalProperties: false } output: { type: "object" properties: { AdWordsRemarketingCode: { type: "string" description: "This is a legacy field. Do not take this information into consideration." } BrandId: { type: "integer" description: "Product brand ID." } CategoryId: { type: "integer" description: "Product category ID." } DepartmentId: { type: "integer" description: "Product department ID." } Description: { type: "string" description: "Product description." } DescriptionShort: { type: "string" description: "Product complement name." } Id: { type: "integer" description: "Product ID." } IsActive: { type: "boolean" description: "If the product is active (`true`) or not (`false`) at the store." } IsVisible: { type: "boolean" description: "If the Product is visible on the store." } KeyWords: { type: "string" description: "Substitutes words for the product." } LinkId: { type: "string" description: "Product text link." } ListStoreId: { type: "array" description: "List with the Trade Policies IDs that the product is included." items: { type: "object" } } LomadeeCampaignCode: { type: "string" description: "This is a legacy field. Do not take this information into consideration." } MetaTagDescription: { type: "string" description: "Product meta tag description." } Name: { type: "string" description: "Product's name. Limited to 150 characters." } RefId: { type: "string" description: "Product referecial code." } ReleaseDate: { type: "string" description: "Product release date." } ShowWithoutStock: { type: "boolean" description: "Defines if the Product will remain being shown in the store even if it’s out of stock." } SupplierId: { type: "integer" description: "Product supplier ID." } TaxCode: { type: "string" description: "Product fiscal code." } Title: { type: "string" description: "Product's Title tag. Limited to 150 characters. It is presented in the browser tab and corresponds to the title of the product page. This field is important for SEO." } } } }