POST api/customer/verifyotp

Request Information

URI Parameters

None.

Body Parameters

VerifyOtpRequest
NameDescriptionTypeAdditional information
RegNo

integer

None.

UserId

integer

None.

Username

string

None.

Otp

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RegNo": 1,
  "UserId": 2,
  "Username": "sample string 3",
  "Otp": 4
}

application/xml, text/xml

Sample:
<VerifyOtpRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VELNO_API.Controllers">
  <Otp>4</Otp>
  <RegNo>1</RegNo>
  <UserId>2</UserId>
  <Username>sample string 3</Username>
</VerifyOtpRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.