POST api/Login/{site}?email={email}&pword={pword}&secure={secure}&appId={appId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
Required |
||
| pword | string |
Required |
|
| secure | boolean |
Required |
|
| appId | globally unique identifier |
Required |
|
| site | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Login| Name | Description | Type | Additional information |
|---|---|---|---|
| SiteUUID | globally unique identifier |
None. |
|
| UserAppTokenU | globally unique identifier |
None. |
|
| UserAppTokenP | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| TagWriter | boolean |
None. |
|
| MobileStores | boolean |
None. |
|
| SwapApp | boolean |
None. |
|
| POApp | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"SiteUUID": "a2021cbd-9b84-4045-a9a0-a365547acf26",
"UserAppTokenU": "6456ef06-63a5-4353-81a6-afd1e0aeae6c",
"UserAppTokenP": "0e3d756c-b2f1-4350-b646-a5f9b9e044a5",
"Name": "sample string 4",
"TagWriter": true,
"MobileStores": true,
"SwapApp": true,
"POApp": true
}
text/xml
Sample:
<Login xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineManagementSystemWebApi.Models"> <MobileStores>true</MobileStores> <Name>sample string 4</Name> <POApp>true</POApp> <SiteUUID>a2021cbd-9b84-4045-a9a0-a365547acf26</SiteUUID> <SwapApp>true</SwapApp> <TagWriter>true</TagWriter> <UserAppTokenP>0e3d756c-b2f1-4350-b646-a5f9b9e044a5</UserAppTokenP> <UserAppTokenU>6456ef06-63a5-4353-81a6-afd1e0aeae6c</UserAppTokenU> </Login>