action box_get_folders_id_metadata { label: "List metadata instances on folder" description: "Retrieves all metadata for a given folder. This can not be used on the root\nfolder with ID `0`." provider: box method: GET path: "/folders/{folder_id}/metadata" encoding: json input: { type: "object" properties: { folder_id: { type: "string" } } required: ["folder_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." } } } }