POST api/Authentication/CheckUser
Request Information
URI Parameters
None.
Body Parameters
UserInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| company_no | integer |
None. |
|
| username | string |
None. |
|
| password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"company_no": 1,
"username": "sample string 2",
"password": "sample string 3"
}
application/xml, text/xml
Sample:
<UserInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SiteProgressAPI.Interfaces"> <company_no>1</company_no> <password>sample string 3</password> <username>sample string 2</username> </UserInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |