GET Employees/GetByBadgeLike

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EmployeesViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

Code

integer

None.

Name

string

None.

BadgeNumber

string

None.

Role

string

None.

Password

string

None.

Enabled

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Code": 2,
  "Name": "sample string 3",
  "BadgeNumber": "sample string 4",
  "Role": "sample string 5",
  "Password": "sample string 6",
  "Enabled": true
}

text/html

Sample:
{"Id":1,"Code":2,"Name":"sample string 3","BadgeNumber":"sample string 4","Role":"sample string 5","Password":"sample string 6","Enabled":true}

application/xml, text/xml

Sample:
<EmployeesViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/pushapi.ViewModels">
  <BadgeNumber>sample string 4</BadgeNumber>
  <Code>2</Code>
  <Enabled>true</Enabled>
  <Id>1</Id>
  <Name>sample string 3</Name>
  <Password>sample string 6</Password>
  <Role>sample string 5</Role>
</EmployeesViewModel>