POST portal/api/hrms/v1/leavepermissions/GetShiftCheckinOut_new

Request Information

URI Parameters

None.

Body Parameters

Collection of Object

None.

Request Formats

application/json, text/json, application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of LeaveType
NameDescriptionTypeAdditional information
LeaveTypeId

integer

None.

Kind

integer

None.

LeaveTypeTitle

string

None.

Balance

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LeaveTypeId": 1,
    "Kind": 2,
    "LeaveTypeTitle": "sample string 3",
    "Balance": 4.1
  },
  {
    "LeaveTypeId": 1,
    "Kind": 2,
    "LeaveTypeTitle": "sample string 3",
    "Balance": 4.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfLeaveType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HorizonSSI.WebApi.Models">
  <LeaveType>
    <Balance>4.1</Balance>
    <Kind>2</Kind>
    <LeaveTypeId>1</LeaveTypeId>
    <LeaveTypeTitle>sample string 3</LeaveTypeTitle>
  </LeaveType>
  <LeaveType>
    <Balance>4.1</Balance>
    <Kind>2</Kind>
    <LeaveTypeId>1</LeaveTypeId>
    <LeaveTypeTitle>sample string 3</LeaveTypeTitle>
  </LeaveType>
</ArrayOfLeaveType>