POST Account/AuthenticatorVerifyOTP
Request Information
URI Parameters
None.
Body Parameters
RequestAuthenticatorVerifyOTP| Name | Description | Type | Additional information |
|---|---|---|---|
| OTPCode | string |
None. |
|
| OTPSecret | string |
None. |
|
| ManualUserAgent | string |
None. |
|
| ManualToken | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OTPCode": "sample string 1",
"OTPSecret": "sample string 2",
"ManualUserAgent": "sample string 3",
"ManualToken": "sample string 4"
}
text/html
Sample:
{"OTPCode":"sample string 1","OTPSecret":"sample string 2","ManualUserAgent":"sample string 3","ManualToken":"sample string 4"}
application/xml, text/xml
Sample:
<RequestAuthenticatorVerifyOTP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestModels"> <ManualToken xmlns="http://schemas.datacontract.org/2004/07/OtherModels">sample string 4</ManualToken> <ManualUserAgent xmlns="http://schemas.datacontract.org/2004/07/OtherModels">sample string 3</ManualUserAgent> <OTPCode>sample string 1</OTPCode> <OTPSecret>sample string 2</OTPSecret> </RequestAuthenticatorVerifyOTP>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseAuthenticatorVerifyOTP| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true
}
text/html
Sample:
{"success":true}
application/xml, text/xml
Sample:
<ResponseAuthenticatorVerifyOTP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ResponseModels"> <success xmlns="http://schemas.datacontract.org/2004/07/GlobalModels">true</success> </ResponseAuthenticatorVerifyOTP>