Company fee show .NET

Method company_fee_show is used for showing details of company invoicing fee.

Return value(s)

This method returns a CompanyFeeParamsOut hash table.

Authentication

This method requires that you have registered to Maventa and received the API key.

Arguments

  1. api_keys (required)
  2. Fee ID string (required)
h2. Example code
 1 require 'soap/wsdlDriver'
 2 
 3 serv = SOAP::WSDLDriverFactory.new("https://secure.maventa.com/api_net/wsdl").create_rpc_driver
 4 
 5 begin 
 6   api_keys = Hash.new
 7   api_keys[:vendor_api_key] = "" # If you are software vendor, you shall put here API-key for this application
 8   api_keys[:user_api_key] = "" # Put here your API key
 9   api_keys[:company_uuid] = "" # Put here UUID of the Company you are acting for
10 
11   result = serv.company_fee_show(api_keys, "Fee ID")
12 
13   if result.status == "OK" 
14     puts result.currency, result.interest, result.reminder_fee, result.paper_fee
15   end
16 
17 rescue Exception => ex 
18   puts ex
19 end

Also available in: HTML TXT