action box_get_metadata_cascade_policies_id { label: "Get metadata cascade policy" description: "Retrieve a specific metadata cascade policy assigned to a folder." provider: box method: GET path: "/metadata_cascade_policies/{metadata_cascade_policy_id}" encoding: json input: { type: "object" properties: { metadata_cascade_policy_id: { type: "string" } } required: ["metadata_cascade_policy_id"] additionalProperties: false } output: { type: "object" description: "A metadata cascade policy automatically applies a metadata template instance\nto all the files and folders within the targeted folder." properties: { id: { type: "string" description: "The ID of the metadata cascade policy object" } owner_enterprise: { type: "object" description: "The enterprise that owns this policy." properties: { id: { type: "string" description: "The ID of the enterprise that owns the policy." } type: { type: "string" description: "`enterprise`" enum: ["enterprise"] } } } parent: { type: "object" description: "Represent the folder the policy is applied to." properties: { id: { type: "string" description: "The ID of the folder the policy is applied to." } type: { type: "string" description: "`folder`" enum: ["folder"] } } } scope: { type: "string" description: "The scope of the of the template that is cascaded down to the folder's\nchildren." enum: ["global", "enterprise_*"] } templateKey: { type: "string" description: "The key of the template that is cascaded down to the folder's\nchildren.\n\nIn many cases the template key is automatically derived\nof its display name, for example `Contract Template` would\nbecome `contractTemplate`. In some cases the creator of the\ntemplate will have provided its own template key.\n\nPlease [list the templates for an enterprise][list], or\nget all instances on a [file][file] or [folder][folder]\nto inspect a template's key.\n\n[list]: e://get-metadata-templates-enterprise\n[file]: e://get-files-id-metadata\n[folder]: e://get-folders-id-metadata" } type: { type: "string" description: "`metadata_cascade_policy`" enum: ["metadata_cascade_policy"] } } } }