POST api/SignIn

เป็น API เพื่อทำการเข้าสู่ระบบ

Request Information

URI Parameters

None.

Body Parameters

m_signIn
NameDescriptionTypeAdditional information
userName

username ของผู้ต้องการเข้าระบบ

string

Required

Password

รหัสผ่านของผู้ต้องการเข้าระบบ

string

Required

Request Formats

application/json, text/json

Sample:
{
  "userName": "sample string 1",
  "Password": "sample string 2"
}

application/xml, text/xml

Sample:
<m_signIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MRP.WebAPI.Models">
  <Password>sample string 2</Password>
  <userName>sample string 1</userName>
</m_signIn>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'm_signIn'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.