User Two-Factor Authentication Status
Returns information about a user's two-factor authentication settings.
Query Parameters
- username string
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Two- Factor Authentication Status of a User
Schema
twoFactorInfo object
isTwoFactorAuthenticationEnabled booleanA Boolean corresponding to whether two-factor authentication is enabled for the user
userEmail stringThe email associated to the username included in the request.
{
"twoFactorInfo": {
"isTwoFactorAuthenticationEnabled": true,
"userEmail": "string"
}
}
{
"twoFactorInfo": {
"isTwoFactorAuthenticationEnabled": false,
"userEmail": "jrana@commvault.com"
}
}
Loading...