All URIs are relative to https://tripletex.no/v2
| Method | HTTP request | Description |
|---|---|---|
| delete | DELETE /bank/reconciliation/match/{id} | [BETA] Delete a bank reconciliation match by ID. |
| get | GET /bank/reconciliation/match/{id} | [BETA] Get bank reconciliation match by ID. |
| post | POST /bank/reconciliation/match | [BETA] Create a bank reconciliation match. |
| put | PUT /bank/reconciliation/match/{id} | [BETA] Update a bank reconciliation match by ID. |
| search | GET /bank/reconciliation/match | [BETA] Find bank reconciliation match corresponding with sent data. |
| suggest | PUT /bank/reconciliation/match/:suggest | [BETA] Suggest matches for a bank reconciliation by ID. |
delete(id)
[BETA] Delete a bank reconciliation match by ID.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
id = 56 # Integer | Element ID
begin
#[BETA] Delete a bank reconciliation match by ID.
api_instance.delete(id)
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->delete: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| id | Integer | Element ID |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
ResponseWrapperBankReconciliationMatch get(id, opts)
[BETA] Get bank reconciliation match by ID.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
id = 56 # Integer | Element ID
opts = {
fields: 'fields_example' # String | Fields filter pattern
}
begin
#[BETA] Get bank reconciliation match by ID.
result = api_instance.get(id, opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->get: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| id | Integer | Element ID | |
| fields | String | Fields filter pattern | [optional] |
ResponseWrapperBankReconciliationMatch
- Content-Type: Not defined
- Accept: Not defined
ResponseWrapperBankReconciliationMatch post(opts)
[BETA] Create a bank reconciliation match.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
opts = {
body: TripletexRubyClient::BankReconciliationMatch.new # BankReconciliationMatch | Partial object describing what should be updated
}
begin
#[BETA] Create a bank reconciliation match.
result = api_instance.post(opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->post: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| body | BankReconciliationMatch | Partial object describing what should be updated | [optional] |
ResponseWrapperBankReconciliationMatch
- Content-Type: application/json; charset=utf-8
- Accept: Not defined
ResponseWrapperBankReconciliationMatch put(id, opts)
[BETA] Update a bank reconciliation match by ID.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
id = 56 # Integer | Element ID
opts = {
body: TripletexRubyClient::BankReconciliationMatch.new # BankReconciliationMatch | Partial object describing what should be updated
}
begin
#[BETA] Update a bank reconciliation match by ID.
result = api_instance.put(id, opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->put: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| id | Integer | Element ID | |
| body | BankReconciliationMatch | Partial object describing what should be updated | [optional] |
ResponseWrapperBankReconciliationMatch
- Content-Type: application/json; charset=utf-8
- Accept: Not defined
ListResponseBankReconciliationMatch search(opts)
[BETA] Find bank reconciliation match corresponding with sent data.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
opts = {
id: 'id_example', # String | List of IDs
bank_reconciliation_id: 'bank_reconciliation_id_example', # String | List of bank reconciliation IDs
count: 5000, # Integer | Number of elements to return
from: 0, # Integer | From index
sorting: 'sorting_example', # String | Sorting pattern
fields: 'fields_example' # String | Fields filter pattern
}
begin
#[BETA] Find bank reconciliation match corresponding with sent data.
result = api_instance.search(opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->search: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | List of IDs | [optional] |
| bank_reconciliation_id | String | List of bank reconciliation IDs | [optional] |
| count | Integer | Number of elements to return | [optional] [default to 5000] |
| from | Integer | From index | [optional] [default to 0] |
| sorting | String | Sorting pattern | [optional] |
| fields | String | Fields filter pattern | [optional] |
ListResponseBankReconciliationMatch
- Content-Type: Not defined
- Accept: Not defined
ListResponseBankReconciliationMatch suggest(bank_reconciliation_id)
[BETA] Suggest matches for a bank reconciliation by ID.
# load the gem
require 'tripletex_ruby_client'
# 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::BankreconciliationmatchApi.new
bank_reconciliation_id = 56 # Integer | Element ID
begin
#[BETA] Suggest matches for a bank reconciliation by ID.
result = api_instance.suggest(bank_reconciliation_id)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankreconciliationmatchApi->suggest: #{e}"
end| Name | Type | Description | Notes |
|---|---|---|---|
| bank_reconciliation_id | Integer | Element ID |
ListResponseBankReconciliationMatch
- Content-Type: Not defined
- Accept: Not defined