All URIs are relative to https://tripletex.no/v2
Method | HTTP request | Description |
---|---|---|
delete | DELETE /bank/statement/{id} | [BETA] Delete bank statement by ID. |
get | GET /bank/statement/{id} | [BETA] Get bank statement. |
import_bank_statement | POST /bank/statement/import | [BETA] Upload bank statement file. |
search | GET /bank/statement | [BETA] Find bank statement corresponding with sent data. |
delete(id)
[BETA] Delete bank statement 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::BankstatementApi.new
id = 56 # Integer | Element ID
begin
#[BETA] Delete bank statement by ID.
api_instance.delete(id)
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankstatementApi->delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | Element ID |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
ResponseWrapperBankStatement get(id, opts)
[BETA] Get bank statement.
# 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::BankstatementApi.new
id = 56 # Integer | Element ID
opts = {
fields: 'fields_example' # String | Fields filter pattern
}
begin
#[BETA] Get bank statement.
result = api_instance.get(id, opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankstatementApi->get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | Element ID | |
fields | String | Fields filter pattern | [optional] |
- Content-Type: Not defined
- Accept: Not defined
ResponseWrapperBankStatement import_bank_statement(bank_id, account_id, from_date, to_date, file_format, file, opts)
[BETA] Upload bank statement file.
# 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::BankstatementApi.new
bank_id = 56 # Integer | Bank ID
account_id = 56 # Integer | Account ID
from_date = 'from_date_example' # String | Format is yyyy-MM-dd (from and incl.).
to_date = 'to_date_example' # String | Format is yyyy-MM-dd (to and excl.).
file_format = 'file_format_example' # String | File format
file = File.new('/path/to/file.txt') # File | The bank statement file
opts = {
external_id: 'external_id_example' # String | External ID
}
begin
#[BETA] Upload bank statement file.
result = api_instance.import_bank_statement(bank_id, account_id, from_date, to_date, file_format, file, opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankstatementApi->import_bank_statement: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
bank_id | Integer | Bank ID | |
account_id | Integer | Account ID | |
from_date | String | Format is yyyy-MM-dd (from and incl.). | |
to_date | String | Format is yyyy-MM-dd (to and excl.). | |
file_format | String | File format | |
file | File | The bank statement file | |
external_id | String | External ID | [optional] |
- Content-Type: multipart/form-data
- Accept: Not defined
ListResponseBankStatement search(opts)
[BETA] Find bank statement corresponding with sent data.
# 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::BankstatementApi.new
opts = {
id: 'id_example', # String | List of IDs
account_id: 'account_id_example', # String | List of IDs
file_format: 'file_format_example', # String | File format
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 bank statement corresponding with sent data.
result = api_instance.search(opts)
p result
rescue TripletexRubyClient::ApiError => e
puts "Exception when calling BankstatementApi->search: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | List of IDs | [optional] |
account_id | String | List of IDs | [optional] |
file_format | String | File format | [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