Skip to content

Latest commit

 

History

History
175 lines (116 loc) · 4.21 KB

AccountingUnpostedinvoicesApi.md

File metadata and controls

175 lines (116 loc) · 4.21 KB

Connectwise::AccountingUnpostedinvoicesApi

All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0

Method HTTP request Description
finance_accounting_unpostedinvoices_count_get GET /finance/accounting/unpostedinvoices/count
finance_accounting_unpostedinvoices_get GET /finance/accounting/unpostedinvoices
finance_accounting_unpostedinvoices_id_get GET /finance/accounting/unpostedinvoices/{id}

finance_accounting_unpostedinvoices_count_get

Count finance_accounting_unpostedinvoices_count_get(opts)

Get Unposted Invoices Count

Example

# load the gem
require 'connectwise-ruby-sdk'
# setup authorization
Connectwise.configure do |config|
  # Configure HTTP basic authorization: BasicAuth
  config.username = 'YOUR USERNAME'
  config.password = 'YOUR PASSWORD'
end

api_instance = Connectwise::AccountingUnpostedinvoicesApi.new

opts = { 
  conditions: "conditions_example" # String | 
}

begin
  result = api_instance.finance_accounting_unpostedinvoices_count_get(opts)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AccountingUnpostedinvoicesApi->finance_accounting_unpostedinvoices_count_get: #{e}"
end

Parameters

Name Type Description Notes
conditions String [optional]

Return type

Count

Authorization

BasicAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

finance_accounting_unpostedinvoices_get

Array<UnpostedInvoice> finance_accounting_unpostedinvoices_get(opts)

Get Unposted Invoices

Example

# load the gem
require 'connectwise-ruby-sdk'
# setup authorization
Connectwise.configure do |config|
  # Configure HTTP basic authorization: BasicAuth
  config.username = 'YOUR USERNAME'
  config.password = 'YOUR PASSWORD'
end

api_instance = Connectwise::AccountingUnpostedinvoicesApi.new

opts = { 
  conditions: "conditions_example" # String | 
  order_by: "order_by_example", # String | 
  page: 56, # Integer | 
  page_size: 56 # Integer | 
}

begin
  result = api_instance.finance_accounting_unpostedinvoices_get(opts)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AccountingUnpostedinvoicesApi->finance_accounting_unpostedinvoices_get: #{e}"
end

Parameters

Name Type Description Notes
conditions String [optional]
order_by String [optional]
page Integer [optional]
page_size Integer [optional]

Return type

Array<UnpostedInvoice>

Authorization

BasicAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

finance_accounting_unpostedinvoices_id_get

UnpostedInvoice finance_accounting_unpostedinvoices_id_get(id)

Get Unposted Invoice By Id

Example

# load the gem
require 'connectwise-ruby-sdk'
# setup authorization
Connectwise.configure do |config|
  # Configure HTTP basic authorization: BasicAuth
  config.username = 'YOUR USERNAME'
  config.password = 'YOUR PASSWORD'
end

api_instance = Connectwise::AccountingUnpostedinvoicesApi.new

id = 56 # Integer | 


begin
  result = api_instance.finance_accounting_unpostedinvoices_id_get(id)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AccountingUnpostedinvoicesApi->finance_accounting_unpostedinvoices_id_get: #{e}"
end

Parameters

Name Type Description Notes
id Integer

Return type

UnpostedInvoice

Authorization

BasicAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json