action vtex_indexed_info { label: "Get Product Indexed Information" description: "Retrieve details of a Product's Indexed Information in XML format. \n## Response body example \n \n```xml \n\" \n\\n \n\\n \n \n true \n 0 \n 2 \n \n * \n \n instanceId:394dbdc8-b1f4-4dea-adfa-1ec104f3bfe1 \n productId:1 \n \n \n \n \n \n \n \n \n \n \\n \n\\n\" \n```" provider: vtex method: GET path: "/api/catalog_system/pvt/products/GetIndexedInfo/{productId}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "Content-Type": { type: "string" } productId: { type: "string" } } required: ["Accept", "Content-Type", "productId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }