action box_get_folders_id_metadata_id_id { label: "Get metadata instance on folder" description: "Retrieves the instance of a metadata template that has been applied to a\nfolder. This can not be used on the root folder with ID `0`." provider: box method: GET path: "/folders/{folder_id}/metadata/{scope}/{template_key}" encoding: json input: { type: "object" properties: { folder_id: { type: "string" } scope: { type: "string" enum: ["global", "enterprise"] } template_key: { type: "string" } } required: ["folder_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." } }