action box_get_legal_hold_policies { label: "List all legal hold policies" description: "Retrieves a list of legal hold policies that belong to\nan enterprise." provider: box method: GET path: "/legal_hold_policies" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } marker: { type: "string" } policy_name: { type: "string" } } additionalProperties: false } output: { type: "object" description: "A list of legal hold policies." } }