All URIs are relative to https://tripletex.no/v2
| Method | HTTP request | Description |
|---|---|---|
| client | GET /employee/entitlement/client | [BETA] Find all entitlements at client for user. |
| get | GET /employee/entitlement/{id} | Get entitlement by ID. |
| grant_client_entitlements_by_template | PUT /employee/entitlement/:grantClientEntitlementsByTemplate | [BETA] Update employee entitlements in client account. |
| grant_entitlements_by_template | PUT /employee/entitlement/:grantEntitlementsByTemplate | [BETA] Update employee entitlements. |
| search | GET /employee/entitlement | Find all entitlements for user. |
ListResponseEntitlement client(opts)
[BETA] Find all entitlements at client for user.
# load the gem
require 'tripletex_ruby_client'
# setup authorization
# # Setup authorization - as autogenerated by swagger-codegen
# TripletexRubyClient.configure do |config|
# # Configure HTTP basic authorization: tokenAuthScheme
# config.username = 'YOUR USERNAME'
# config.password = 'YOUR PASSWORD'
# end
# Setup authorization
#
TripletexRubyClient.configure do |config|
# Configure HTTP basic authorization: tokenAuthScheme
config.consumer_token = ENV["TT_CONSUMER_TOKEN"]
config.employee_token = ENV["TT_EMPLOYEE_TOKEN"]
config.host = Rails.env.production? ? 'https://tripletex.no' : 'https://api.tripletex.io'
config.token_expiration_time = Rails.env.production? ? 1.month : 1.day
end
api_instance = TripletexRubyClient::EmployeeentitlementApi.new
opts = {
employee_id: 56, # Integer | Employee ID. Defaults to ID of token owner.
customer_id: 56, # Integer | Client ID
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 entitlements at client for user.
result = api_instance.client(opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling EmployeeentitlementApi->client: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| employee_id | Integer | Employee ID. Defaults to ID of token owner. | [optional] |
| customer_id | Integer | Client ID | [optional] |
| 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] |
- Content-Type: Not defined
- Accept: Not defined
ResponseWrapperEntitlement get(id, opts)
Get entitlement by ID.
# load the gem
require 'tripletex_ruby_client'
# setup authorization
# # Setup authorization - as autogenerated by swagger-codegen
# TripletexRubyClient.configure do |config|
# # Configure HTTP basic authorization: tokenAuthScheme
# config.username = 'YOUR USERNAME'
# config.password = 'YOUR PASSWORD'
# end
# Setup authorization
#
TripletexRubyClient.configure do |config|
# Configure HTTP basic authorization: tokenAuthScheme
config.consumer_token = ENV["TT_CONSUMER_TOKEN"]
config.employee_token = ENV["TT_EMPLOYEE_TOKEN"]
config.host = Rails.env.production? ? 'https://tripletex.no' : 'https://api.tripletex.io'
config.token_expiration_time = Rails.env.production? ? 1.month : 1.day
end
api_instance = TripletexRubyClient::EmployeeentitlementApi.new
id = 56 # Integer | Element ID
opts = {
fields: 'fields_example' # String | Fields filter pattern
}
begin
#Get entitlement by ID.
result = api_instance.get(id, opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling EmployeeentitlementApi->get: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| id | Integer | Element ID | |
| fields | String | Fields filter pattern | [optional] |
- Content-Type: Not defined
- Accept: Not defined
grant_client_entitlements_by_template(employee_id, customer_id, template, opts)
[BETA] Update employee entitlements in client account.
# load the gem
require 'tripletex_ruby_client'
# setup authorization
# # Setup authorization - as autogenerated by swagger-codegen
# TripletexRubyClient.configure do |config|
# # Configure HTTP basic authorization: tokenAuthScheme
# config.username = 'YOUR USERNAME'
# config.password = 'YOUR PASSWORD'
# end
# Setup authorization
#
TripletexRubyClient.configure do |config|
# Configure HTTP basic authorization: tokenAuthScheme
config.consumer_token = ENV["TT_CONSUMER_TOKEN"]
config.employee_token = ENV["TT_EMPLOYEE_TOKEN"]
config.host = Rails.env.production? ? 'https://tripletex.no' : 'https://api.tripletex.io'
config.token_expiration_time = Rails.env.production? ? 1.month : 1.day
end
api_instance = TripletexRubyClient::EmployeeentitlementApi.new
employee_id = 56 # Integer | Employee ID
customer_id = 56 # Integer | Client ID
template = 'template_example' # String | Template
opts = {
add_to_existing: false # BOOLEAN | Add template to existing entitlements
}
begin
#[BETA] Update employee entitlements in client account.
api_instance.grant_client_entitlements_by_template(employee_id, customer_id, template, opts)
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling EmployeeentitlementApi->grant_client_entitlements_by_template: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| employee_id | Integer | Employee ID | |
| customer_id | Integer | Client ID | |
| template | String | Template | |
| add_to_existing | BOOLEAN | Add template to existing entitlements | [optional] [default to false] |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
grant_entitlements_by_template(employee_id, template)
[BETA] Update employee entitlements.
The user will only receive the entitlements which are possible with the registered user type
# load the gem
require 'tripletex_ruby_client'
# setup authorization
# # Setup authorization - as autogenerated by swagger-codegen
# TripletexRubyClient.configure do |config|
# # Configure HTTP basic authorization: tokenAuthScheme
# config.username = 'YOUR USERNAME'
# config.password = 'YOUR PASSWORD'
# end
# Setup authorization
#
TripletexRubyClient.configure do |config|
# Configure HTTP basic authorization: tokenAuthScheme
config.consumer_token = ENV["TT_CONSUMER_TOKEN"]
config.employee_token = ENV["TT_EMPLOYEE_TOKEN"]
config.host = Rails.env.production? ? 'https://tripletex.no' : 'https://api.tripletex.io'
config.token_expiration_time = Rails.env.production? ? 1.month : 1.day
end
api_instance = TripletexRubyClient::EmployeeentitlementApi.new
employee_id = 56 # Integer | Employee ID
template = 'template_example' # String | Template
begin
#[BETA] Update employee entitlements.
api_instance.grant_entitlements_by_template(employee_id, template)
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling EmployeeentitlementApi->grant_entitlements_by_template: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| employee_id | Integer | Employee ID | |
| template | String | Template |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
ListResponseEntitlement search(opts)
Find all entitlements for user.
# load the gem
require 'tripletex_ruby_client'
# setup authorization
# # Setup authorization - as autogenerated by swagger-codegen
# TripletexRubyClient.configure do |config|
# # Configure HTTP basic authorization: tokenAuthScheme
# config.username = 'YOUR USERNAME'
# config.password = 'YOUR PASSWORD'
# end
# Setup authorization
#
TripletexRubyClient.configure do |config|
# Configure HTTP basic authorization: tokenAuthScheme
config.consumer_token = ENV["TT_CONSUMER_TOKEN"]
config.employee_token = ENV["TT_EMPLOYEE_TOKEN"]
config.host = Rails.env.production? ? 'https://tripletex.no' : 'https://api.tripletex.io'
config.token_expiration_time = Rails.env.production? ? 1.month : 1.day
end
api_instance = TripletexRubyClient::EmployeeentitlementApi.new
opts = {
employee_id: 56, # Integer | Employee ID. Defaults to ID of token owner.
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
#Find all entitlements for user.
result = api_instance.search(opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling EmployeeentitlementApi->search: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| employee_id | Integer | Employee ID. Defaults to ID of token owner. | [optional] |
| 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] |
- Content-Type: Not defined
- Accept: Not defined