POST api/Gateway/Checklogin
Request Information
URI Parameters
None.
Body Parameters
FetchData| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Username": "sample string 1",
"Password": "sample string 2"
}
application/xml, text/xml
Sample:
<FetchData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models"> <Password>sample string 2</Password> <Username>sample string 1</Username> </FetchData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | integer |
None. |
|
| c_Id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Type": 1,
"c_Id": 2
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication1.Models"> <Type>1</Type> <c_Id>2</c_Id> </Response>