All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0
Method | HTTP request | Description |
---|---|---|
finance_accounting_batches_count_get | GET /finance/accounting/batches/count | |
finance_accounting_batches_get | GET /finance/accounting/batches | |
finance_accounting_batches_id_delete | DELETE /finance/accounting/batches/{id} | |
finance_accounting_batches_id_get | GET /finance/accounting/batches/{id} | |
finance_accounting_batches_post | POST /finance/accounting/batches |
Count finance_accounting_batches_count_get(opts)
Get Batches Count
# 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::AccountingBatchesApi.new
opts = {
conditions: "conditions_example" # String |
}
begin
result = api_instance.finance_accounting_batches_count_get(opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AccountingBatchesApi->finance_accounting_batches_count_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] |
- Content-Type: Not defined
- Accept: application/json
Array<Batch> finance_accounting_batches_get(opts)
Get Batches
# 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::AccountingBatchesApi.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_batches_get(opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AccountingBatchesApi->finance_accounting_batches_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] | |
order_by | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json
finance_accounting_batches_id_delete(id)
Delete Batch By Id
# 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::AccountingBatchesApi.new
id = 56 # Integer |
begin
api_instance.finance_accounting_batches_id_delete(id)
rescue Connectwise::ApiError => e
puts "Exception when calling AccountingBatchesApi->finance_accounting_batches_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
Batch finance_accounting_batches_id_get(id)
Get Batch By Id
# 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::AccountingBatchesApi.new
id = 56 # Integer |
begin
result = api_instance.finance_accounting_batches_id_get(id)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AccountingBatchesApi->finance_accounting_batches_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
- Content-Type: Not defined
- Accept: application/json
Batch finance_accounting_batches_post(batch)
Create Batch
# 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::AccountingBatchesApi.new
batch = Connectwise::Batch.new # Batch |
begin
result = api_instance.finance_accounting_batches_post(batch)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AccountingBatchesApi->finance_accounting_batches_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
batch | Batch |
- Content-Type: application/json
- Accept: application/json