action akeneo_get_media_files_code { label: "Get a product media file" description: "This endpoint allows you to get the information about a given media file that is used as an attribute value of a product or a product model." provider: akeneo method: GET path: "/api/rest/v1/media-files/{code}" encoding: json input: { type: "object" properties: { code: { type: "string" } } required: ["code"] additionalProperties: false } output: { type: "object" additionalProperties: true } }