POST api/account/mobile/otp/{id}
Get OTP on mobile number for verification.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
authenticated user id to get email otp |
integer |
Required |
Body Parameters
mobile details to receive otp
MobileVerify| Name | Description | Type | Additional information |
|---|---|---|---|
| country_code |
country code of mobile number entered by user for verification |
string |
Required |
| mobile_number |
mobile number to receive OTP on it |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"country_code": "sample string 1",
"mobile_number": "sample string 2"
}
application/xml, text/xml
Sample:
<mobile_verify xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LifetronsPhoneApi.Models.v5.UsersModel"> <country_code>sample string 1</country_code> <mobile_number>sample string 2</mobile_number> </mobile_verify>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
On success, returns details On failure, lifetrons fail result
GenericResp| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
generic id to return |
integer |
None. |
| other_user_id |
this is used when user remove member from group or other id |
integer |
None. |
| mapping_id |
string mapping id to return to client |
string |
None. |
| string_id |
any string id to return to client |
string |
None. |
| resp_code |
Lifetrons response code |
string |
None. |
| resp_msg |
Lifetrons response message |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": 1,
"other_user_id": 1,
"mapping_id": "sample string 1",
"string_id": "sample string 2",
"resp_code": "sample string 3",
"resp_msg": "sample string 4"
}
application/xml, text/xml
Sample:
<generic_resp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LifetronsPhoneApi.Domain.ResponseAgg.v5"> <resp_code xmlns="http://schemas.datacontract.org/2004/07/LifetronsPhoneApi.Models">sample string 3</resp_code> <resp_msg xmlns="http://schemas.datacontract.org/2004/07/LifetronsPhoneApi.Models">sample string 4</resp_msg> <id>1</id> <mapping_id>sample string 1</mapping_id> <other_user_id>1</other_user_id> <string_id>sample string 2</string_id> </generic_resp>