GET api/LoginWebAPI/SendCredentialsToUser?user_mobile_number={user_mobile_number}&username={username}&password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
user_mobile_number

string

Required

username

string

Required

password

string

Required

Body Parameters

None.

Response Information

Resource Description

OTPResponse
NameDescriptionTypeAdditional information
OTPNumber

string

None.

MobileNumber

string

None.

SMSStatus

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "OTPNumber": "sample string 1",
  "MobileNumber": "sample string 2",
  "SMSStatus": true
}

text/html

Sample:
{"OTPNumber":"sample string 1","MobileNumber":"sample string 2","SMSStatus":true}

application/xml, text/xml

Sample:
<OTPResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nishadi_DataLayer.ViewModel">
  <MobileNumber>sample string 2</MobileNumber>
  <OTPNumber>sample string 1</OTPNumber>
  <SMSStatus>true</SMSStatus>
</OTPResponse>