POST api/v1/VerifyOTP

Request Information

URI Parameters

None.

Body Parameters

OTPVerify
NameDescriptionTypeAdditional information
mobile

string

None.

otp

string

None.

fcm

string

None.

device

string

None.

Request Formats

application/json, text/json

Sample:
{
  "mobile": "sample string 1",
  "otp": "sample string 2",
  "fcm": "sample string 3",
  "device": "sample string 4"
}

application/xml, text/xml

Sample:
<OTPVerify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
  <device>sample string 4</device>
  <fcm>sample string 3</fcm>
  <mobile>sample string 1</mobile>
  <otp>sample string 2</otp>
</OTPVerify>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

UserResponse
NameDescriptionTypeAdditional information
uid

integer

None.

name

string

None.

scode

string

None.

status

string

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "uid": 1,
  "name": "sample string 2",
  "scode": "sample string 3",
  "status": "sample string 4",
  "message": "sample string 5"
}

application/xml, text/xml

Sample:
<UserResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppBridge">
  <message>sample string 5</message>
  <name>sample string 2</name>
  <scode>sample string 3</scode>
  <status>sample string 4</status>
  <uid>1</uid>
</UserResponse>