POST api/DrTh/AppUser/Login
Request Information
URI Parameters
None.
Body Parameters
AppUserLoginModel| Name | Description | Type | Additional information |
|---|---|---|---|
| phone | string |
None. |
|
| password_hash | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"phone": "sample string 1",
"password_hash": "sample string 2"
}
application/xml, text/xml
Sample:
<DrThController.AppUserLoginModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Goldsoft_WebApi.Controllers"> <password_hash>sample string 2</password_hash> <phone>sample string 1</phone> </DrThController.AppUserLoginModel>
application/x-www-form-urlencoded
Sample:
multipart/form-data
Sample:
--MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="phone" sample string 1 --MultipartDataMediaFormatterBoundary1q2w3e Content-Disposition: form-data; name="password_hash" sample string 2 --MultipartDataMediaFormatterBoundary1q2w3e--
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, multipart/form-data
Sample:
Sample not available.