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