PUT api/2.0/settings/tfaappnewapp
Unlinks the current two-factor authentication application from the user account specified in the request.
Name |
Description |
Type |
Example |
Type
sent in body
|
TFA type (None, Sms, or App)
|
System.String
|
|
Id
sent in body
|
User ID
|
System.Nullable{System.Guid}
|
|
TrustedIps
sent in body
|
List of trusted IP addresses
|
System.Collections.Generic.List{System.String}
|
|
MandatoryUsers
sent in body
|
List of users who must use the TFA verification
|
System.Collections.Generic.List{System.Guid}
|
|
MandatoryGroups
sent in body
|
List of groups who must use the TFA verification
|
System.Collections.Generic.List{System.Guid}
|
|
PUT api/2.0/settings/tfaappnewapp
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"Type": "some text",
"Id": "9924256A-739C-462b-AF15-E652A3B1B6EB",
"TrustedIps": [
"some text"
],
"MandatoryUsers": [
"9924256A-739C-462b-AF15-E652A3B1B6EB"
],
"MandatoryGroups": [
"9924256A-739C-462b-AF15-E652A3B1B6EB"
]
}