POST api/MerchantApp/FSTSGMBMerchantPresentationOTPVerification?MobileNo={MobileNo}&OTP={OTP}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MobileNo

string

Required

OTP

string

Required

Body Parameters

None.

Response Information

Resource Description

ServiceResultOfDictionaryOfStringAndObject
NameDescriptionTypeAdditional information
Message

string

None.

Description

string

None.

Result

boolean

None.

Data

Dictionary of string [key] and Object [value]

None.

status

integer

None.

TotalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Description": "sample string 2",
  "Result": true,
  "Data": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "status": 4,
  "TotalCount": 5
}

application/xml, text/xml

Sample:
<ServiceResultOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.FTSServices">
  <Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 1</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
    <d2p1:KeyValueOfstringanyType>
      <d2p1:Key>sample string 3</d2p1:Key>
      <d2p1:Value />
    </d2p1:KeyValueOfstringanyType>
  </Data>
  <Description>sample string 2</Description>
  <Message>sample string 1</Message>
  <Result>true</Result>
  <TotalCount>5</TotalCount>
  <status>4</status>
</ServiceResultOfArrayOfKeyValueOfstringanyTypeuHEDJ7Dj>