action axesso_request_buy_recommendation { label: "request buy recommendations to a given product" description: "" provider: axesso method: GET path: "/amz/amazon-lookup-buy-recommendations" encoding: json input: { type: "object" properties: { url: { type: "string" } } required: ["url"] additionalProperties: false } output: { type: "object" properties: { buyRecommendations: { type: "array" items: { type: "string" } } numberOfProducts: { type: "integer" format: "int64" } responseMessage: { type: "string" } responseStatus: { type: "string" } } } }