Skip to content

Latest commit

 

History

History
413 lines (269 loc) · 10 KB

AgreementAdjustmentsApi.md

File metadata and controls

413 lines (269 loc) · 10 KB

Connectwise::AgreementAdjustmentsApi

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

Method HTTP request Description
finance_agreements_id_adjustments_adjustment_id_delete DELETE /finance/agreements/{id}/adjustments/{adjustmentId}
finance_agreements_id_adjustments_adjustment_id_get GET /finance/agreements/{id}/adjustments/{adjustmentId}
finance_agreements_id_adjustments_adjustment_id_patch PATCH /finance/agreements/{id}/adjustments/{adjustmentId}
finance_agreements_id_adjustments_adjustment_id_put PUT /finance/agreements/{id}/adjustments/{adjustmentId}
finance_agreements_id_adjustments_count_get GET /finance/agreements/{id}/adjustments/count
finance_agreements_id_adjustments_get GET /finance/agreements/{id}/adjustments
finance_agreements_id_adjustments_post POST /finance/agreements/{id}/adjustments

finance_agreements_id_adjustments_adjustment_id_delete

finance_agreements_id_adjustments_adjustment_id_delete(id, adjustment_id)

Delete Adjustment 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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

adjustment_id = 56 # Integer | 


begin
  api_instance.finance_agreements_id_adjustments_adjustment_id_delete(id, adjustment_id)
rescue Connectwise::ApiError => e
  puts "Exception when calling AgreementAdjustmentsApi->finance_agreements_id_adjustments_adjustment_id_delete: #{e}"
end

Parameters

Name Type Description Notes
id Integer
adjustment_id Integer

Return type

nil (empty response body)

Authorization

BasicAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

finance_agreements_id_adjustments_adjustment_id_get

Adjustment finance_agreements_id_adjustments_adjustment_id_get(id, adjustment_id)

Get Adjustment 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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

adjustment_id = 56 # Integer | 


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

Parameters

Name Type Description Notes
id Integer
adjustment_id Integer

Return type

Adjustment

Authorization

BasicAuth

HTTP request headers

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

finance_agreements_id_adjustments_adjustment_id_patch

Adjustment finance_agreements_id_adjustments_adjustment_id_patch(id, adjustment_id, operations)

Update Adjustment

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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

adjustment_id = 56 # Integer | 

operations = [Connectwise::PatchOperation.new] # Array<PatchOperation> | 


begin
  result = api_instance.finance_agreements_id_adjustments_adjustment_id_patch(id, adjustment_id, operations)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AgreementAdjustmentsApi->finance_agreements_id_adjustments_adjustment_id_patch: #{e}"
end

Parameters

Name Type Description Notes
id Integer
adjustment_id Integer
operations Array<PatchOperation>

Return type

Adjustment

Authorization

BasicAuth

HTTP request headers

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

finance_agreements_id_adjustments_adjustment_id_put

Adjustment finance_agreements_id_adjustments_adjustment_id_put(id, adjustment_id, adjustment)

Replace Adjustment

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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

adjustment_id = 56 # Integer | 

adjustment = Connectwise::Adjustment.new # Adjustment | 


begin
  result = api_instance.finance_agreements_id_adjustments_adjustment_id_put(id, adjustment_id, adjustment)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AgreementAdjustmentsApi->finance_agreements_id_adjustments_adjustment_id_put: #{e}"
end

Parameters

Name Type Description Notes
id Integer
adjustment_id Integer
adjustment Adjustment

Return type

Adjustment

Authorization

BasicAuth

HTTP request headers

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

finance_agreements_id_adjustments_count_get

Count finance_agreements_id_adjustments_count_get(id, opts)

Get Adjustments 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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

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

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

Parameters

Name Type Description Notes
id Integer
conditions String [optional]

Return type

Count

Authorization

BasicAuth

HTTP request headers

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

finance_agreements_id_adjustments_get

Array<Adjustment> finance_agreements_id_adjustments_get(id, opts)

Get Adjustments

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::AgreementAdjustmentsApi.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_adjustments_get(id, opts)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling AgreementAdjustmentsApi->finance_agreements_id_adjustments_get: #{e}"
end

Parameters

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

Return type

Array<Adjustment>

Authorization

BasicAuth

HTTP request headers

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

finance_agreements_id_adjustments_post

Adjustment finance_agreements_id_adjustments_post(id, adjustment)

Create Adjustment

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::AgreementAdjustmentsApi.new

id = 56 # Integer | 

adjustment = Connectwise::Adjustment.new # Adjustment | 


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

Parameters

Name Type Description Notes
id Integer
adjustment Adjustment

Return type

Adjustment

Authorization

BasicAuth

HTTP request headers

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