All URIs are relative to http://cloud.na.myconnectwise.net/v4_6_development/apis/3.0
Method | HTTP request | Description |
---|---|---|
get_finance_company_finance | GET /finance/companyFinance/ | Get List of CompanyFinances |
get_finance_company_finance_by_id | GET /finance/companyFinance/{id} | Get CompanyFinances |
get_finance_company_finance_count | GET /finance/companyFinance/count | Get Count of CompanyFinances |
patch_finance_company_finance_by_id | PATCH /finance/companyFinance/{id} | Patch CompanyFinances |
put_company_company_finance_by_id | PUT /company/companyFinance/{id} | Put CompanyFinance |
<Array> get_finance_company_finance(client_id, opts)
Get List of CompanyFinances
require 'time'
require 'connect_wise'
api_instance = ConnectWise::CompanyFinancesApi.new
client_id = 'client_id_example' # String |
opts = {
conditions: 'conditions_example', # String |
child_conditions: 'child_conditions_example', # String |
custom_field_conditions: 'custom_field_conditions_example', # String |
order_by: 'order_by_example', # String |
fields: 'fields_example', # String |
page: 56, # Integer |
page_size: 56, # Integer |
page_id: 56 # Integer |
}
begin
# Get List of CompanyFinances
result = api_instance.get_finance_company_finance(client_id, opts)
p result
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(<Array>, Integer, Hash)> get_finance_company_finance_with_http_info(client_id, opts)
begin
# Get List of CompanyFinances
data, status_code, headers = api_instance.get_finance_company_finance_with_http_info(client_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Array<CompanyFinance>>
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
client_id | String | ||
conditions | String | [optional] | |
child_conditions | String | [optional] | |
custom_field_conditions | String | [optional] | |
order_by | String | [optional] | |
fields | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] | |
page_id | Integer | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: application/vnd.connectwise.com+json; version=2022.1
get_finance_company_finance_by_id(id, client_id, opts)
Get CompanyFinances
require 'time'
require 'connect_wise'
api_instance = ConnectWise::CompanyFinancesApi.new
id = 56 # Integer | companyId
client_id = 'client_id_example' # String |
opts = {
conditions: 'conditions_example', # String |
child_conditions: 'child_conditions_example', # String |
custom_field_conditions: 'custom_field_conditions_example', # String |
order_by: 'order_by_example', # String |
fields: 'fields_example', # String |
page: 56, # Integer |
page_size: 56, # Integer |
page_id: 56 # Integer |
}
begin
# Get CompanyFinances
result = api_instance.get_finance_company_finance_by_id(id, client_id, opts)
p result
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance_by_id: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_finance_company_finance_by_id_with_http_info(id, client_id, opts)
begin
# Get CompanyFinances
data, status_code, headers = api_instance.get_finance_company_finance_by_id_with_http_info(id, client_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <CompanyFinance>
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance_by_id_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | companyId | |
client_id | String | ||
conditions | String | [optional] | |
child_conditions | String | [optional] | |
custom_field_conditions | String | [optional] | |
order_by | String | [optional] | |
fields | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] | |
page_id | Integer | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: application/vnd.connectwise.com+json; version=2022.1
get_finance_company_finance_count(client_id, opts)
Get Count of CompanyFinances
require 'time'
require 'connect_wise'
api_instance = ConnectWise::CompanyFinancesApi.new
client_id = 'client_id_example' # String |
opts = {
conditions: 'conditions_example', # String |
child_conditions: 'child_conditions_example', # String |
custom_field_conditions: 'custom_field_conditions_example', # String |
order_by: 'order_by_example', # String |
fields: 'fields_example', # String |
page: 56, # Integer |
page_size: 56, # Integer |
page_id: 56 # Integer |
}
begin
# Get Count of CompanyFinances
result = api_instance.get_finance_company_finance_count(client_id, opts)
p result
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance_count: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> get_finance_company_finance_count_with_http_info(client_id, opts)
begin
# Get Count of CompanyFinances
data, status_code, headers = api_instance.get_finance_company_finance_count_with_http_info(client_id, opts)
p status_code # => 2xx
p headers # => { ... }
p data # => <Count>
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->get_finance_company_finance_count_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
client_id | String | ||
conditions | String | [optional] | |
child_conditions | String | [optional] | |
custom_field_conditions | String | [optional] | |
order_by | String | [optional] | |
fields | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] | |
page_id | Integer | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: application/vnd.connectwise.com+json; version=2022.1
patch_finance_company_finance_by_id(id, client_id, patch_operation)
Patch CompanyFinances
require 'time'
require 'connect_wise'
api_instance = ConnectWise::CompanyFinancesApi.new
id = 56 # Integer | companyId
client_id = 'client_id_example' # String |
patch_operation = [ConnectWise::PatchOperation.new] # Array<PatchOperation> | List of PatchOperation
begin
# Patch CompanyFinances
result = api_instance.patch_finance_company_finance_by_id(id, client_id, patch_operation)
p result
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->patch_finance_company_finance_by_id: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> patch_finance_company_finance_by_id_with_http_info(id, client_id, patch_operation)
begin
# Patch CompanyFinances
data, status_code, headers = api_instance.patch_finance_company_finance_by_id_with_http_info(id, client_id, patch_operation)
p status_code # => 2xx
p headers # => { ... }
p data # => <CompanyFinance>
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->patch_finance_company_finance_by_id_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | companyId | |
client_id | String | ||
patch_operation | Array<PatchOperation> | List of PatchOperation |
No authorization required
- Content-Type: application/json
- Accept: application/vnd.connectwise.com+json; version=2022.1
put_company_company_finance_by_id(id, client_id, company_finance)
Put CompanyFinance
require 'time'
require 'connect_wise'
api_instance = ConnectWise::CompanyFinancesApi.new
id = 56 # Integer | companyId
client_id = 'client_id_example' # String |
company_finance = ConnectWise::CompanyFinance.new # CompanyFinance | CompanyFinance
begin
# Put CompanyFinance
result = api_instance.put_company_company_finance_by_id(id, client_id, company_finance)
p result
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->put_company_company_finance_by_id: #{e}"
end
This returns an Array which contains the response data, status code and headers.
<Array(, Integer, Hash)> put_company_company_finance_by_id_with_http_info(id, client_id, company_finance)
begin
# Put CompanyFinance
data, status_code, headers = api_instance.put_company_company_finance_by_id_with_http_info(id, client_id, company_finance)
p status_code # => 2xx
p headers # => { ... }
p data # => <CompanyFinance>
rescue ConnectWise::ApiError => e
puts "Error when calling CompanyFinancesApi->put_company_company_finance_by_id_with_http_info: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | companyId | |
client_id | String | ||
company_finance | CompanyFinance | CompanyFinance |
No authorization required
- Content-Type: application/json
- Accept: application/vnd.connectwise.com+json; version=2022.1