Skip to content

Latest commit

 

History

History
69 lines (47 loc) · 1.82 KB

EmployeeemploymentleaveOfAbsenceTypeApi.md

File metadata and controls

69 lines (47 loc) · 1.82 KB

TripletexApi::EmployeeemploymentleaveOfAbsenceTypeApi

All URIs are relative to https://tripletex.no/v2

Method HTTP request Description
search GET /employee/employment/leaveOfAbsenceType [BETA] Find all leave of absence type IDs.

search

ListResponseLeaveOfAbsenceType search(opts)

[BETA] Find all leave of absence type IDs.

Example

# load the gem
require 'tripletex_api'
# setup authorization
TripletexApi.configure do |config|
  # Configure HTTP basic authorization: tokenAuthScheme
  config.username = 'YOUR USERNAME'
  config.password = 'YOUR PASSWORD'
end

api_instance = TripletexApi::EmployeeemploymentleaveOfAbsenceTypeApi.new

opts = { 
  from: 0, # Integer | From index
  count: 1000, # Integer | Number of elements to return
  sorting: "sorting_example", # String | Sorting pattern
  fields: "fields_example" # String | Fields filter pattern
}

begin
  #[BETA] Find all leave of absence type IDs.
  result = api_instance.search(opts)
  p result
rescue TripletexApi::ApiError => e
  puts "Exception when calling EmployeeemploymentleaveOfAbsenceTypeApi->search: #{e}"
end

Parameters

Name Type Description Notes
from Integer From index [optional] [default to 0]
count Integer Number of elements to return [optional] [default to 1000]
sorting String Sorting pattern [optional]
fields String Fields filter pattern [optional]

Return type

ListResponseLeaveOfAbsenceType

Authorization

tokenAuthScheme

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined