POST api/Users/VerifyOTPCode

Request Information

URI Parameters

None.

Body Parameters

VerifyOTP
NameDescriptionTypeAdditional information
OTPRecordID

globally unique identifier

None.

UserID

integer

None.

OtpLength

integer

None.

OtpType

string

None.

Title

string

None.

Description

string

None.

Reference

Object

None.

OTPCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OTPRecordID": "0b13982d-218c-4627-bb3c-9ec56c97cb61",
  "UserID": 2,
  "OtpLength": 3,
  "OtpType": "sample string 4",
  "Title": "sample string 5",
  "Description": "sample string 6",
  "Reference": {},
  "OTPCode": "sample string 8"
}

application/xml, text/xml

Sample:
<VerifyOTP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <Description>sample string 6</Description>
  <OTPCode>sample string 8</OTPCode>
  <OTPRecordID>0b13982d-218c-4627-bb3c-9ec56c97cb61</OTPRecordID>
  <OtpLength>3</OtpLength>
  <OtpType>sample string 4</OtpType>
  <Reference />
  <Title>sample string 5</Title>
  <UserID>2</UserID>
</VerifyOTP>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>