GET api/employee/device/{companycode}/{deviceId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companycode

string

Required

deviceId

string

Required

Body Parameters

None.

Response Information

Resource Description

Employee
NameDescriptionTypeAdditional information
EmployeeId

integer

None.

Name

string

None.

EmployeeNo

string

None.

PosLoginId

string

None.

PosPassword

string

None.

Role

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EmployeeId": 1,
  "Name": "sample string 2",
  "EmployeeNo": "sample string 3",
  "PosLoginId": "sample string 4",
  "PosPassword": "sample string 5",
  "Role": "sample string 6"
}

text/xml

Sample:
<Employee xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CloudSysPOSWeb.Models">
  <EmployeeId>1</EmployeeId>
  <EmployeeNo>sample string 3</EmployeeNo>
  <Name>sample string 2</Name>
  <PosLoginId>sample string 4</PosLoginId>
  <PosPassword>sample string 5</PosPassword>
  <Role>sample string 6</Role>
</Employee>