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