GET api/User

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EmployeeInfoDto
NameDescriptionTypeAdditional information
AreaName

string

None.

JobName

string

None.

Hours

string

None.

IsVtcUser

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "AreaName": "sample string 1",
  "JobName": "sample string 2",
  "Hours": "sample string 3",
  "IsVtcUser": true
}

application/xml, text/xml

Sample:
<EmployeeInfoDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VTC_API.Dto.User">
  <AreaName>sample string 1</AreaName>
  <Hours>sample string 3</Hours>
  <IsVtcUser>true</IsVtcUser>
  <JobName>sample string 2</JobName>
</EmployeeInfoDto>