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": "9a059654-7c77-4d5d-b1f0-41d74979bbe8",
"UserAppTokenU": "817d21d9-dd22-4634-a8d0-e67ab1f8f3ea",
"UserAppTokenP": "e640d212-c16a-4d81-8ec4-29f6fb467349",
"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>9a059654-7c77-4d5d-b1f0-41d74979bbe8</SiteUUID> <SwapApp>true</SwapApp> <TagWriter>true</TagWriter> <UserAppTokenP>e640d212-c16a-4d81-8ec4-29f6fb467349</UserAppTokenP> <UserAppTokenU>817d21d9-dd22-4634-a8d0-e67ab1f8f3ea</UserAppTokenU> </Login>