GET API/Chatbot/ValidateEmailOTP

Request Information

URI Parameters

None.

Body Parameters

OtpRequest
NameDescriptionTypeAdditional information
VCNo

string

None.

MobileNo

string

None.

EmailID

string

None.

ClientIP

string

None.

Isd2h

integer

None.

SMSID

decimal number

None.

Otp

string

None.

Request Formats

application/json, text/json

Sample:
{
  "VCNo": "sample string 1",
  "MobileNo": "sample string 2",
  "EmailID": "sample string 3",
  "ClientIP": "sample string 4",
  "Isd2h": 5,
  "SMSID": 6.0,
  "Otp": "sample string 7"
}

application/xml, text/xml

Sample:
<OtpRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Phoenix.IN.Common.Models.Master">
  <ClientIP>sample string 4</ClientIP>
  <EmailID>sample string 3</EmailID>
  <Isd2h>5</Isd2h>
  <MobileNo>sample string 2</MobileNo>
  <Otp>sample string 7</Otp>
  <SMSID>6</SMSID>
  <VCNo>sample string 1</VCNo>
</OtpRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultInfoOfBoolean
NameDescriptionTypeAdditional information
AccessToken

string

None.

TokenType

string

None.

ResultType

TypeOfResult

None.

ResultCode

integer

None.

ResultDesc

string

None.

Result

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "AccessToken": "sample string 1",
  "TokenType": "sample string 2",
  "ResultType": 0,
  "ResultCode": 3,
  "ResultDesc": "sample string 4",
  "Result": true
}

application/xml, text/xml

Sample:
<ResultInfoOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Phoenix.IN.Common.Models.Common">
  <AccessToken>sample string 1</AccessToken>
  <Result>true</Result>
  <ResultCode>3</ResultCode>
  <ResultDesc>sample string 4</ResultDesc>
  <ResultType>Success</ResultType>
  <TokenType>sample string 2</TokenType>
</ResultInfoOfboolean>