POST apioauth/mfa/validate

Validate a mfa code

Request Information

URI Parameters

None.

Body Parameters

ValidateMFARequest
NameDescriptionTypeAdditional information
mfa_code

the code to be validated

string

None.

Request Formats

application/json, text/json

Sample:
{
  "mfa_code": "sample string 1"
}

application/xml, text/xml

Sample:
<ValidateMFARequest xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <MfaCode>sample string 1</MfaCode>
</ValidateMFARequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ValidateMFAResponse
NameDescriptionTypeAdditional information
result

If the code was sucesfully validated

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "result": true
}

application/xml, text/xml

Sample:
<ValidateMFAResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Result>true</Result>
</ValidateMFAResponse>