Get Started
API backend
API system
More information

GET api/2.0/settings/tfaapp This function requires authentication

Description

Returns the current two-factor authentication settings.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/settings/tfaapp
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

TFA settings

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Id": "some text",
      "Title": "some text",
      "Enabled": true,
      "Avaliable": true,
      "TrustedIps": [
        "some text"
      ]
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Id>some text</Id>
    <Title>some text</Title>
    <Enabled>True</Enabled>
    <Avaliable>True</Avaliable>
    <TrustedIps>[
  "some text"
]</TrustedIps>
  </response>
</result>