action box_get_metadata_templates { label: "Find metadata template by instance ID" description: "Finds a metadata template by searching for the ID of an instance of the\ntemplate." provider: box method: GET path: "/metadata_templates" encoding: json input: { type: "object" properties: { metadata_instance_id: { type: "string" format: "uuid" } } required: ["metadata_instance_id"] additionalProperties: false } output: { type: "object" description: "A list of metadata templates" } }