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