action akeneo_post_media_files { label: "Create a new product media file" description: "This endpoint allows you to create a new media file and associate it to an attribute value of a given product or product model." provider: akeneo method: POST path: "/api/rest/v1/media-files" encoding: json input: { type: "object" properties: { "Content-type": { type: "string" } } required: ["Content-type"] additionalProperties: false } output: { type: "object" additionalProperties: true } }