POST api/otp/verify

Request Information

URI Parameters

None.

Body Parameters

OtpVerifyRequestDto
NameDescriptionTypeAdditional information
countryCode

string

Required

phoneNo

string

Required

otpCode

string

Required

purpose

OtpPurpose

Required

Request Formats

application/json, text/json

Sample:
{
  "countryCode": "sample string 1",
  "phoneNo": "sample string 2",
  "otpCode": "sample string 3",
  "purpose": "login"
}

application/xml, text/xml

Sample:
<OtpVerifyRequestDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cash_Bet_Digitalization.Models">
  <CountryCode>sample string 1</CountryCode>
  <OtpCode>sample string 3</OtpCode>
  <PhoneNumber>sample string 2</PhoneNumber>
  <Purpose>Login</Purpose>
</OtpVerifyRequestDto>

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.