action box_get_files_id_metadata { label: "List metadata instances on file" description: "Retrieves all metadata for a given file." provider: box method: GET path: "/files/{file_id}/metadata" encoding: json input: { type: "object" properties: { file_id: { type: "string" } } required: ["file_id"] additionalProperties: false } output: { type: "object" description: "A list of metadata instances that have been applied to a file or folder." properties: { entries: { type: "array" description: "A list of metadata instances, as applied to this file or folder." items: { type: "object" description: "An instance of a metadata template, which has been applied to a file or\nfolder." } } limit: { type: "integer" description: "The limit that was used for this page of results." } } } }