action dracoon_request_mfa_policies_config {
label: "Request MFA policies"
description: "
🚀 Since v4.37.0
\n\n### Description: \nRetrieve a list of multi-factor authentication policies. \n\n### Precondition:\nRight 🔓 read global config of the Provider Customer required.\n\n### Postcondition:\nList of configured multi-factor authentication policies is returned.\n\n### Further Information:\nNone."
provider: dracoon
method: GET
path: "/v4/system/config/policies/mfa"
encoding: json
input: {
type: "object"
properties: {
"X-Sds-Auth-Token": {
type: "string"
}
}
additionalProperties: false
}
output: {
type: "object"
description: "Set of multi-factor authentication policies"
required: ["isMfaEnforced"]
properties: {
isMfaEnforced: {
type: "boolean"
description: "Determines whether multi-factor authentication is enforced"
}
}
}
}