POST api/VanLogin?uname={uname}&upwd={upwd}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
uname

string

Required

upwd

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserVanLoginDetails
NameDescriptionTypeAdditional information
userid

integer

None.

username

string

None.

usertype

string

None.

EmpId

integer

None.

EmployeeName

string

None.

EmployeeCode

string

None.

RoleID

string

None.

CustomerID

string

None.

LocationID

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "userid": 1,
    "username": "sample string 2",
    "usertype": "sample string 3",
    "EmpId": 4,
    "EmployeeName": "sample string 5",
    "EmployeeCode": "sample string 6",
    "RoleID": "sample string 7",
    "CustomerID": "sample string 8",
    "LocationID": "sample string 9"
  },
  {
    "userid": 1,
    "username": "sample string 2",
    "usertype": "sample string 3",
    "EmpId": 4,
    "EmployeeName": "sample string 5",
    "EmployeeCode": "sample string 6",
    "RoleID": "sample string 7",
    "CustomerID": "sample string 8",
    "LocationID": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserVanLoginDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entity">
  <UserVanLoginDetails>
    <CustomerID>sample string 8</CustomerID>
    <EmpId>4</EmpId>
    <EmployeeCode>sample string 6</EmployeeCode>
    <EmployeeName>sample string 5</EmployeeName>
    <LocationID>sample string 9</LocationID>
    <RoleID>sample string 7</RoleID>
    <userid>1</userid>
    <username>sample string 2</username>
    <usertype>sample string 3</usertype>
  </UserVanLoginDetails>
  <UserVanLoginDetails>
    <CustomerID>sample string 8</CustomerID>
    <EmpId>4</EmpId>
    <EmployeeCode>sample string 6</EmployeeCode>
    <EmployeeName>sample string 5</EmployeeName>
    <LocationID>sample string 9</LocationID>
    <RoleID>sample string 7</RoleID>
    <userid>1</userid>
    <username>sample string 2</username>
    <usertype>sample string 3</usertype>
  </UserVanLoginDetails>
</ArrayOfUserVanLoginDetails>