POST api/Helper/OTP_VERIFY_CODE

Request Information

URI Parameters

None.

Body Parameters

ZOtpVerifyCodeRequest
NameDescriptionTypeAdditional information
OtpID

integer

None.

OtpCode

string

None.

Request Formats

application/json, text/json

Sample:
{
  "OtpID": 1,
  "OtpCode": "sample string 2"
}

application/xml, text/xml

Sample:
<ZOtpVerifyCodeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity">
  <OtpCode>sample string 2</OtpCode>
  <OtpID>1</OtpID>
</ZOtpVerifyCodeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ZOtpVerifyCodeResponse
NameDescriptionTypeAdditional information
EmployeeID

integer

None.

MobileNumber

string

None.

OtpCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EmployeeID": 1,
  "MobileNumber": "sample string 2",
  "OtpCode": "sample string 3"
}

application/xml, text/xml

Sample:
<ZOtpVerifyCodeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EMS.Entity">
  <EmployeeID>1</EmployeeID>
  <MobileNumber>sample string 2</MobileNumber>
  <OtpCode>sample string 3</OtpCode>
</ZOtpVerifyCodeResponse>