action box_get_retention_policies_id_assignments { label: "List retention policy assignments" description: "Returns a list of all retention policy assignments associated with a specified\nretention policy." provider: box method: GET path: "/retention_policies/{retention_policy_id}/assignments" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } limit: { type: "integer" format: "int64" } marker: { type: "string" } retention_policy_id: { type: "string" } type: { type: "string" enum: ["folder", "enterprise", "metadata_template"] } } required: ["retention_policy_id"] additionalProperties: false } output: { type: "object" description: "A list of retention policy assignments." } }