class Bfwd::CreditnotesApi
Attributes
Public Class Methods
# File lib/bf_ruby2/api/creditnotes_api.rb, line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end
Public Instance Methods
Create a credit note. {"nickname":"Create a new credit note","request":"createCreditNoteRequest.html","response":"createCreditNoteResponse.html"} @param credit_note The credit note object to be created. @param [Hash] opts the optional parameters @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 28 def create_credit_note(credit_note, opts = {}) data, _status_code, _headers = create_credit_note_with_http_info(credit_note, opts) return data end
Create a credit note. {"nickname":"Create a new credit note","request":"createCreditNoteRequest.html","response":"createCreditNoteResponse.html"} @param credit_note The credit note object to be created. @param [Hash] opts the optional parameters @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 38 def create_credit_note_with_http_info(credit_note, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.create_credit_note ..." end # verify the required parameter 'credit_note' is set if @api_client.config.client_side_validation && credit_note.nil? fail ArgumentError, "Missing the required parameter 'credit_note' when calling CreditnotesApi.create_credit_note" end # resource path local_var_path = "/credit-notes" # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/xml', 'application/xml', 'application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json; charset=utf-8']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(credit_note) auth_names = [] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#create_credit_note\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Returns a single credit-note, specified by the ID parameter. {"nickname":"Retrieve an existing credit note","response":"getCreditNoteByID.html"} @param credit_note_id ID of the credit-note. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 84 def get_credit_note_by_id(credit_note_id, opts = {}) data, _status_code, _headers = get_credit_note_by_id_with_http_info(credit_note_id, opts) return data end
Returns a single credit-note, specified by the ID parameter. {"nickname":"Retrieve an existing credit note","response":"getCreditNoteByID.html"} @param credit_note_id ID of the credit-note. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 95 def get_credit_note_by_id_with_http_info(credit_note_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.get_credit_note_by_id ..." end # verify the required parameter 'credit_note_id' is set if @api_client.config.client_side_validation && credit_note_id.nil? fail ArgumentError, "Missing the required parameter 'credit_note_id' when calling CreditnotesApi.get_credit_note_by_id" end # resource path local_var_path = "/credit-notes/{credit-note-ID}".sub('{' + 'credit-note-ID' + '}', credit_note_id.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(opts[:'organizations'], :multi) if !opts[:'organizations'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#get_credit_note_by_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Returns credit notes for an account. {"nickname":"Retrieve by account","response":"getCreditNotesByAccount.html"} @param account_id ID of the account. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. (default to 0) @option opts [Integer] :records The maximum number of payments to return. (default to 10) @option opts [String] :order_by Specify a field used to order the result set. (default to id) @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. (default to DESC) @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 146 def get_credit_note_for_account(account_id, opts = {}) data, _status_code, _headers = get_credit_note_for_account_with_http_info(account_id, opts) return data end
Returns credit notes for an account. {"nickname":"Retrieve by account","response":"getCreditNotesByAccount.html"} @param account_id ID of the account. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. @option opts [Integer] :records The maximum number of payments to return. @option opts [String] :order_by Specify a field used to order the result set. @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 161 def get_credit_note_for_account_with_http_info(account_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.get_credit_note_for_account ..." end # verify the required parameter 'account_id' is set if @api_client.config.client_side_validation && account_id.nil? fail ArgumentError, "Missing the required parameter 'account_id' when calling CreditnotesApi.get_credit_note_for_account" end if @api_client.config.client_side_validation && opts[:'order'] && !['ASC', 'DESC'].include?(opts[:'order']) fail ArgumentError, 'invalid value for "order", must be one of ASC, DESC' end # resource path local_var_path = "/credit-notes/account/{account-ID}".sub('{' + 'account-ID' + '}', account_id.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(opts[:'organizations'], :multi) if !opts[:'organizations'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'records'] = opts[:'records'] if !opts[:'records'].nil? query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil? query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#get_credit_note_for_account\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Returns credit notes for an invoice. {"nickname":"Retrieve by invoice","response":"getCreditNotesByInvoice.html"} @param invoice_id ID of the Invoice
. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. (default to 0) @option opts [Integer] :records The maximum number of payments to return. (default to 10) @option opts [String] :order_by Specify a field used to order the result set. (default to id) @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. (default to DESC) @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 219 def get_credit_note_for_invoice(invoice_id, opts = {}) data, _status_code, _headers = get_credit_note_for_invoice_with_http_info(invoice_id, opts) return data end
Returns credit notes for an invoice. {"nickname":"Retrieve by invoice","response":"getCreditNotesByInvoice.html"} @param invoice_id ID of the Invoice
. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. @option opts [Integer] :records The maximum number of payments to return. @option opts [String] :order_by Specify a field used to order the result set. @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 234 def get_credit_note_for_invoice_with_http_info(invoice_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.get_credit_note_for_invoice ..." end # verify the required parameter 'invoice_id' is set if @api_client.config.client_side_validation && invoice_id.nil? fail ArgumentError, "Missing the required parameter 'invoice_id' when calling CreditnotesApi.get_credit_note_for_invoice" end if @api_client.config.client_side_validation && opts[:'order'] && !['ASC', 'DESC'].include?(opts[:'order']) fail ArgumentError, 'invalid value for "order", must be one of ASC, DESC' end # resource path local_var_path = "/credit-notes/invoice/{invoice-ID}".sub('{' + 'invoice-ID' + '}', invoice_id.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(opts[:'organizations'], :multi) if !opts[:'organizations'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'records'] = opts[:'records'] if !opts[:'records'].nil? query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil? query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#get_credit_note_for_invoice\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Returns credit notes for an subscription. {"nickname":"Retrieve by subscription","response":"getCreditNotesSubscription.html"} @param subscription_id ID of the subscription. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. (default to 0) @option opts [Integer] :records The maximum number of payments to return. (default to 10) @option opts [String] :order_by Specify a field used to order the result set. (default to id) @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. (default to DESC) @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 292 def get_credit_note_for_subscription(subscription_id, opts = {}) data, _status_code, _headers = get_credit_note_for_subscription_with_http_info(subscription_id, opts) return data end
Returns credit notes for an subscription. {"nickname":"Retrieve by subscription","response":"getCreditNotesSubscription.html"} @param subscription_id ID of the subscription. @param [Hash] opts the optional parameters @option opts [Array<String>] :organizations A list of organization-IDs used to restrict the scope of API calls. @option opts [Integer] :offset The offset from the first payment to return. @option opts [Integer] :records The maximum number of payments to return. @option opts [String] :order_by Specify a field used to order the result set. @option opts [String] :order Ihe direction of any ordering, either ASC or DESC. @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 307 def get_credit_note_for_subscription_with_http_info(subscription_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.get_credit_note_for_subscription ..." end # verify the required parameter 'subscription_id' is set if @api_client.config.client_side_validation && subscription_id.nil? fail ArgumentError, "Missing the required parameter 'subscription_id' when calling CreditnotesApi.get_credit_note_for_subscription" end if @api_client.config.client_side_validation && opts[:'order'] && !['ASC', 'DESC'].include?(opts[:'order']) fail ArgumentError, 'invalid value for "order", must be one of ASC, DESC' end # resource path local_var_path = "/credit-notes/subscription/{subscription-ID}".sub('{' + 'subscription-ID' + '}', subscription_id.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(opts[:'organizations'], :multi) if !opts[:'organizations'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'records'] = opts[:'records'] if !opts[:'records'].nil? query_params[:'order_by'] = opts[:'order_by'] if !opts[:'order_by'].nil? query_params[:'order'] = opts[:'order'] if !opts[:'order'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#get_credit_note_for_subscription\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end
Removes any remaining value from credit note {"nickname":"Removes remaining value from credit note","response":"deleteCreditNote.html"} @param credit_note_id ID of the credit-note. @param organizations A list of organization-IDs used to restrict the scope of API calls. @param [Hash] opts the optional parameters @return [CreditNotePagedMetadata]
# File lib/bf_ruby2/api/creditnotes_api.rb, line 361 def retire_credit_note(credit_note_id, organizations, opts = {}) data, _status_code, _headers = retire_credit_note_with_http_info(credit_note_id, organizations, opts) return data end
Removes any remaining value from credit note {"nickname":"Removes remaining value from credit note","response":"deleteCreditNote.html"} @param credit_note_id ID of the credit-note. @param organizations A list of organization-IDs used to restrict the scope of API calls. @param [Hash] opts the optional parameters @return [Array<(CreditNotePagedMetadata
, Fixnum, Hash)>] CreditNotePagedMetadata
data, response status code and response headers
# File lib/bf_ruby2/api/creditnotes_api.rb, line 372 def retire_credit_note_with_http_info(credit_note_id, organizations, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: CreditnotesApi.retire_credit_note ..." end # verify the required parameter 'credit_note_id' is set if @api_client.config.client_side_validation && credit_note_id.nil? fail ArgumentError, "Missing the required parameter 'credit_note_id' when calling CreditnotesApi.retire_credit_note" end # verify the required parameter 'organizations' is set if @api_client.config.client_side_validation && organizations.nil? fail ArgumentError, "Missing the required parameter 'organizations' when calling CreditnotesApi.retire_credit_note" end # resource path local_var_path = "/credit-notes/{credit-note-ID}".sub('{' + 'credit-note-ID' + '}', credit_note_id.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(organizations, :multi) # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'CreditNotePagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: CreditnotesApi#retire_credit_note\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end