GET api/GenerateOtp?EmailId={EmailId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
EmailId

string

Required

Body Parameters

None.

Response Information

Resource Description

ReturnObjectOfInt32
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Messages

Collection of string

None.

ErrorCode

integer

None.

Response

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "Messages": [
    "sample string 1",
    "sample string 2"
  ],
  "ErrorCode": 2,
  "Response": 3
}

application/xml, text/xml

Sample:
<ReturnObjectOfInt32 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IsSuccess>true</IsSuccess>
  <Messages>
    <string>sample string 1</string>
    <string>sample string 2</string>
  </Messages>
  <ErrorCode>2</ErrorCode>
  <Response>3</Response>
</ReturnObjectOfInt32>