action box_get_files_id_metadata_id_id { label: "Get metadata instance on file" description: "Retrieves the instance of a metadata template that has been applied to a\nfile." provider: box method: GET path: "/files/{file_id}/metadata/{scope}/{template_key}" encoding: json input: { type: "object" properties: { file_id: { type: "string" } scope: { type: "string" enum: ["global", "enterprise"] } template_key: { type: "string" } } required: ["file_id", "scope", "template_key"] additionalProperties: false } output: { type: "object" description: "An instance of a metadata template, which has been applied to a file or\nfolder." } }