GET api/EmployeeDayOff

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Employee_Day_Off
NameDescriptionTypeAdditional information
Id

integer

None.

DayOff_Id

globally unique identifier

None.

Enable

boolean

None.

Employee

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "DayOff_Id": "fa7301fe-1f41-4cbf-a9f0-c9610f1502f9",
    "Enable": true,
    "Employee": "sample string 4"
  },
  {
    "Id": 1,
    "DayOff_Id": "fa7301fe-1f41-4cbf-a9f0-c9610f1502f9",
    "Enable": true,
    "Employee": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEmployee_Day_Off xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JmplusAPI.Entities.Employee">
  <Employee_Day_Off>
    <DayOff_Id>fa7301fe-1f41-4cbf-a9f0-c9610f1502f9</DayOff_Id>
    <Employee>sample string 4</Employee>
    <Enable>true</Enable>
    <Id>1</Id>
  </Employee_Day_Off>
  <Employee_Day_Off>
    <DayOff_Id>fa7301fe-1f41-4cbf-a9f0-c9610f1502f9</DayOff_Id>
    <Employee>sample string 4</Employee>
    <Enable>true</Enable>
    <Id>1</Id>
  </Employee_Day_Off>
</ArrayOfEmployee_Day_Off>