action vtex_get_api_catalog_pvt_product_product_id_salespolicy { label: "Get Trade Policies by Product ID" description: "Retrieves a list of Trade Policies associated to a Product based on the Product's ID. \n## Response body example \n \n```json \n[ \n { \n \"ProductId\": 1, \n \"StoreId\": 1 \n }, \n { \n \"ProductId\": 1, \n \"StoreId\": 2 \n }, \n { \n \"ProductId\": 1, \n \"StoreId\": 3 \n }, \n { \n \"ProductId\": 1, \n \"StoreId\": 4 \n } \n] \n```" provider: vtex method: GET path: "/api/catalog/pvt/product/{productId}/salespolicy" 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: "array" items: { type: "object" description: "Object containing the Product ID and the Trade Policy ID." properties: { ProductId: { type: "integer" description: "Product’s unique numerical identifier." } StoreId: { type: "integer" description: "Trade policy's unique numerical identifier." } } } } }