action box_get_retention_policies_id { label: "Get retention policy" description: "Retrieves a retention policy." provider: box method: GET path: "/retention_policies/{retention_policy_id}" encoding: json input: { type: "object" properties: { fields: { type: "array" items: { type: "string" } } retention_policy_id: { type: "string" } } required: ["retention_policy_id"] additionalProperties: false } output: { type: "object" description: "A retention policy blocks permanent deletion of content\nfor a specified amount of time. Admins can create retention\npolicies and then later assign them to specific folders, metadata\ntemplates, or their entire enterprise. To use this feature, you must\nhave the manage retention policies scope enabled\nfor your API key via your application management console." } }