action dracoon_request_classification_policies_config_info { label: "Request classification policies" description: "

🚀 Since v4.30.0

\n\n### Description:\nRetrieve a list of classification policies:\n* `shareClassificationPolicies`\n\n### Precondition:\nAuthenticated user.\n\n### Postcondition:\nList of configured classification policies is returned.\n\n### Further Information:\n`classificationRequiresSharePassword`: When a node has this classification or higher, it cannot be shared without a password. If the node is an encrypted file this policy has no effect. `0` means no password will be enforced.\n" provider: dracoon method: GET path: "/v4/config/info/policies/classifications" encoding: json input: { type: "object" properties: { "X-Sds-Auth-Token": { type: "string" } } additionalProperties: false } output: { type: "object" description: "Set of classification policies" properties: { shareClassificationPolicies: { type: "object" description: "Shares classification policies" properties: { classificationRequiresSharePassword: { type: "integer" format: "int32" description: "🚀 Since v4.30.0\n\nMinimum classification that causes download shares to require a password. `0` means no password will be enforced." enum: [0, 1, 2, 3, 4] } } } } } }