POST api/esim/auth/VerifyESimOtp

Request Information

URI Parameters

None.

Body Parameters

ESimOtpVerifyRequestModel
NameDescriptionTypeAdditional information
PhoneNumber

string

None.

EmailAddress

string

None.

Otp

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PhoneNumber": "sample string 1",
  "EmailAddress": "sample string 2",
  "Otp": "sample string 3"
}

application/xml, text/xml

Sample:
<ESimOtpVerifyRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Controllers.ESim">
  <EmailAddress>sample string 2</EmailAddress>
  <Otp>sample string 3</Otp>
  <PhoneNumber>sample string 1</PhoneNumber>
</ESimOtpVerifyRequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ESimOtpVerifyResponseModel
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Message": "sample string 2"
}

application/xml, text/xml

Sample:
<ESimOtpVerifyResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Raza.Web.Api.Controllers.ESim">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 2</Message>
</ESimOtpVerifyResponseModel>