POST api/account/reactivate/request-otp

Request Information

URI Parameters

None.

Body Parameters

MeSendOTPInputModel
NameDescriptionTypeAdditional information
RequestId

string

None.

CountryCode

string

None.

ContactNo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RequestId": "sample string 1",
  "CountryCode": "sample string 2",
  "ContactNo": "sample string 3"
}

application/xml, text/xml

Sample:
<MeSendOTPInputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <ContactNo>sample string 3</ContactNo>
  <CountryCode>sample string 2</CountryCode>
  <RequestId>sample string 1</RequestId>
</MeSendOTPInputModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

MeSendOTPOutputModel
NameDescriptionTypeAdditional information
OTP

string

None.

Response Formats

application/json, text/json

Sample:
{
  "OTP": "sample string 1"
}

application/xml, text/xml

Sample:
<MeSendOTPOutputModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HyperQB.Property.API.Models">
  <OTP>sample string 1</OTP>
</MeSendOTPOutputModel>