GET api/v2/mfasettings

This Api is to get the MFA settings

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

MFASettingResponseModel
NameDescriptionTypeAdditional information
EmailId

integer

None.

EmailAddress

string

None.

IsValidated

boolean

None.

IsOtpEnabled

integer

None.

IsOtpSupported

integer

None.

ResultCode

integer

None.

ResultData

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EmailId": 1,
  "EmailAddress": "sample string 2",
  "IsValidated": true,
  "IsOtpEnabled": 4,
  "IsOtpSupported": 5,
  "ResultCode": 6,
  "ResultData": "sample string 7"
}

application/xml, text/xml

Sample:
<MFASettingResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TC2Domain.MFA">
  <ResultCode>6</ResultCode>
  <ResultData>sample string 7</ResultData>
  <EmailAddress>sample string 2</EmailAddress>
  <EmailId>1</EmailId>
  <IsOtpEnabled>4</IsOtpEnabled>
  <IsOtpSupported>5</IsOtpSupported>
  <IsValidated>true</IsValidated>
</MFASettingResponseModel>