action akeneo_get_published_products_code { label: "Get a published product" description: "This endpoint allows you to get the information about a given published product." provider: akeneo method: GET path: "/api/rest/v1/published-products/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }