action box_get_retention_policy_assignments_id_files_under_retention { label: "Get files under retention" description: "Returns a list of files under retention for a retention policy assignment." provider: box method: GET path: "/retention_policy_assignments/{retention_policy_assignment_id}/files_under_retention" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int64" } marker: { type: "string" } retention_policy_assignment_id: { type: "string" } } required: ["retention_policy_assignment_id"] additionalProperties: false } output: { type: "object" description: "A list of files under retention." } }