POST login
Request Information
URI Parameters
None.
Body Parameters
LoginDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Account | string |
None. |
|
| loginpwd | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Account": "sample string 1",
"loginpwd": "sample string 2"
}
application/xml, text/xml
Sample:
<LoginDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zs.Ylx.Resources.Entity.DTO"> <Account>sample string 1</Account> <loginpwd>sample string 2</loginpwd> </LoginDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
LoginResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerNo | string |
None. |
|
| UnitNo | string |
None. |
|
| IsUpload | integer |
None. |
|
| IsJoinUp | integer |
None. |
|
| IdentityType | integer |
None. |
|
| UserName | string |
None. |
|
| IsApply | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"CustomerNo": "sample string 1",
"UnitNo": "sample string 2",
"IsUpload": 3,
"IsJoinUp": 4,
"IdentityType": 5,
"UserName": "sample string 6",
"IsApply": 7
}
application/xml, text/xml
Sample:
<LoginResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Zs.Ylx.Resources.Entity"> <CustomerNo>sample string 1</CustomerNo> <IdentityType>5</IdentityType> <IsApply>7</IsApply> <IsJoinUp>4</IsJoinUp> <IsUpload>3</IsUpload> <UnitNo>sample string 2</UnitNo> <UserName>sample string 6</UserName> </LoginResponse>