action akeneo_post_product_model_proposal { label: "Submit a draft for approval" description: "This endpoint allows you to submit a product model draft for approval." provider: akeneo method: POST path: "/api/rest/v1/product-models/{code}/proposal" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }