Skip to content

Latest commit

 

History

History
85 lines (63 loc) · 2.85 KB

ProductproductPriceApi.md

File metadata and controls

85 lines (63 loc) · 2.85 KB

TripletexRubyClient::ProductproductPriceApi

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

Method HTTP request Description
search GET /product/productPrice [BETA] Find prices for a product. Only available for users that have activated the Logistics/Logistics Plus Beta-program in 'Our customer account'

search

ListResponseProductPrice search(product_id, opts)

[BETA] Find prices for a product. Only available for users that have activated the Logistics/Logistics Plus Beta-program in 'Our customer account'

Example

# 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::ProductproductPriceApi.new

product_id = 56 # Integer | Equals

opts = { 
  from_date: 'from_date_example', # String | From and including
  to_date: 'to_date_example', # String | To and excluding
  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 prices for a product. Only available for users that have activated the Logistics/Logistics Plus Beta-program in 'Our customer account'
  result = api_instance.search(product_id, opts)
  p result
rescue TripletexRubyClient::ApiError => e
  puts "Exception when calling ProductproductPriceApi->search: #{e}"
end

Parameters

Name Type Description Notes
product_id Integer Equals
from_date String From and including [optional]
to_date String To and excluding [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]

Return type

ListResponseProductPrice

Authorization

tokenAuthScheme

HTTP request headers

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