All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0
Method | HTTP request | Description |
---|---|---|
finance_agreements_id_board_defaults_board_default_id_delete | DELETE /finance/agreements/{id}/boardDefaults/{boardDefaultId} | |
finance_agreements_id_board_defaults_board_default_id_get | GET /finance/agreements/{id}/boardDefaults/{boardDefaultId} | |
finance_agreements_id_board_defaults_board_default_id_patch | PATCH /finance/agreements/{id}/boardDefaults/{boardDefaultId} | |
finance_agreements_id_board_defaults_board_default_id_put | PUT /finance/agreements/{id}/boardDefaults/{boardDefaultId} | |
finance_agreements_id_board_defaults_count_get | GET /finance/agreements/{id}/boardDefaults/count | |
finance_agreements_id_board_defaults_get | GET /finance/agreements/{id}/boardDefaults | |
finance_agreements_id_board_defaults_post | POST /finance/agreements/{id}/boardDefaults |
finance_agreements_id_board_defaults_board_default_id_delete(id, board_default_id)
Delete Board Default 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
board_default_id = 56 # Integer |
begin
api_instance.finance_agreements_id_board_defaults_board_default_id_delete(id, board_default_id)
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_board_default_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
board_default_id | Integer |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
BoardDefault finance_agreements_id_board_defaults_board_default_id_get(id, board_default_id)
Get Board Default 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
board_default_id = 56 # Integer |
begin
result = api_instance.finance_agreements_id_board_defaults_board_default_id_get(id, board_default_id)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_board_default_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
board_default_id | Integer |
- Content-Type: Not defined
- Accept: application/json
BoardDefault finance_agreements_id_board_defaults_board_default_id_patch(id, board_default_id, operations)
Update Board Default
# 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
board_default_id = 56 # Integer |
operations = [Connectwise::PatchOperation.new] # Array<PatchOperation> |
begin
result = api_instance.finance_agreements_id_board_defaults_board_default_id_patch(id, board_default_id, operations)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_board_default_id_patch: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
board_default_id | Integer | ||
operations | Array<PatchOperation> |
- Content-Type: application/json
- Accept: application/json
BoardDefault finance_agreements_id_board_defaults_board_default_id_put(id, board_default_id, board_default)
Replace Board Default
# 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
board_default_id = 56 # Integer |
board_default = Connectwise::BoardDefault.new # BoardDefault |
begin
result = api_instance.finance_agreements_id_board_defaults_board_default_id_put(id, board_default_id, board_default)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_board_default_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
board_default_id | Integer | ||
board_default | BoardDefault |
- Content-Type: application/json
- Accept: application/json
Count finance_agreements_id_board_defaults_count_get(id, opts)
Get Board Defaults 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
opts = {
conditions: "conditions_example" # String |
}
begin
result = api_instance.finance_agreements_id_board_defaults_count_get(id, opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_count_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
conditions | String | [optional] |
- Content-Type: Not defined
- Accept: application/json
Array<BoardDefault> finance_agreements_id_board_defaults_get(id, opts)
Get Board Defaults
# 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
opts = {
conditions: "conditions_example" # String |
order_by: "order_by_example", # String |
page: 56, # Integer |
page_size: 56 # Integer |
}
begin
result = api_instance.finance_agreements_id_board_defaults_get(id, opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
conditions | String | [optional] | |
order_by | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json
BoardDefault finance_agreements_id_board_defaults_post(id, board_default)
Create Board Default
# 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::AgreementBoardDefaultsApi.new
id = 56 # Integer |
board_default = Connectwise::BoardDefault.new # BoardDefault |
begin
result = api_instance.finance_agreements_id_board_defaults_post(id, board_default)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling AgreementBoardDefaultsApi->finance_agreements_id_board_defaults_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
board_default | BoardDefault |
- Content-Type: application/json
- Accept: application/json