GET api/ECLogin?loginId={loginId}
Gets Login User Details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| loginId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
User Details
ECLogin| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId |
Gets or sets the user ID. |
integer |
None. |
| LoginId |
Gets or sets the login ID. |
string |
None. |
| Password |
Gets or sets the password. |
string |
None. |
| Username |
Gets or sets the username. |
string |
None. |
| ProfileImageURL |
Gets or sets the Profile Image URL. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"UserId": 1,
"LoginId": "sample string 2",
"Password": "sample string 3",
"Username": "sample string 4",
"ProfileImageURL": "sample string 5"
}
application/xml, text/xml
Sample:
<ECLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OTJServices.Models"> <LoginId>sample string 2</LoginId> <Password>sample string 3</Password> <ProfileImageURL>sample string 5</ProfileImageURL> <UserId>1</UserId> <Username>sample string 4</Username> </ECLogin>