Skip to content

Latest commit

 

History

History
417 lines (273 loc) · 11.4 KB

CompanyManagementSummaryReportsApi.md

File metadata and controls

417 lines (273 loc) · 11.4 KB

ConnectWise::CompanyManagementSummaryReportsApi

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

Method HTTP request Description
company_companies_id_management_summary_reports_count_get GET /company/companies/{id}/managementSummaryReports/count
company_companies_id_management_summary_reports_get GET /company/companies/{id}/managementSummaryReports
company_companies_id_management_summary_reports_post POST /company/companies/{id}/managementSummaryReports
company_companies_id_management_summary_reports_report_id_delete DELETE /company/companies/{id}/managementSummaryReports/{reportId}
company_companies_id_management_summary_reports_report_id_get GET /company/companies/{id}/managementSummaryReports/{reportId}
company_companies_id_management_summary_reports_report_id_patch PATCH /company/companies/{id}/managementSummaryReports/{reportId}
company_companies_id_management_summary_reports_report_id_put PUT /company/companies/{id}/managementSummaryReports/{reportId}

company_companies_id_management_summary_reports_count_get

Count company_companies_id_management_summary_reports_count_get(id, opts)

Get Company Types 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::CompanyManagementSummaryReportsApi.new

id = 56 # Integer | 

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

begin
  result = api_instance.company_companies_id_management_summary_reports_count_get(id, opts)
  p result
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_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

company_companies_id_management_summary_reports_get

Array<CompanyManagementSummary> company_companies_id_management_summary_reports_get(id, opts)

Get Management Summarys

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

id = 56 # Integer | 

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

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

Parameters

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

Return type

Array<CompanyManagementSummary>

Authorization

BasicAuth

HTTP request headers

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

company_companies_id_management_summary_reports_post

CompanyManagementSummary company_companies_id_management_summary_reports_post(id, management_summary)

Create Management Summary

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

id = 56 # Integer | 

management_summary = ConnectWise::CompanyManagementSummary.new # CompanyManagementSummary | 


begin
  result = api_instance.company_companies_id_management_summary_reports_post(id, management_summary)
  p result
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_post: #{e}"
end

Parameters

Name Type Description Notes
id Integer
management_summary CompanyManagementSummary

Return type

CompanyManagementSummary

Authorization

BasicAuth

HTTP request headers

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

company_companies_id_management_summary_reports_report_id_delete

company_companies_id_management_summary_reports_report_id_delete(id, report_id)

Delete Management Summary 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::CompanyManagementSummaryReportsApi.new

id = 56 # Integer | 

report_id = 56 # Integer | 


begin
  api_instance.company_companies_id_management_summary_reports_report_id_delete(id, report_id)
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_report_id_delete: #{e}"
end

Parameters

Name Type Description Notes
id Integer
report_id Integer

Return type

nil (empty response body)

Authorization

BasicAuth

HTTP request headers

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

company_companies_id_management_summary_reports_report_id_get

CompanyManagementSummary company_companies_id_management_summary_reports_report_id_get(id, report_id)

Get Management Summary 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::CompanyManagementSummaryReportsApi.new

id = 56 # Integer | 

report_id = 56 # Integer | 


begin
  result = api_instance.company_companies_id_management_summary_reports_report_id_get(id, report_id)
  p result
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_report_id_get: #{e}"
end

Parameters

Name Type Description Notes
id Integer
report_id Integer

Return type

CompanyManagementSummary

Authorization

BasicAuth

HTTP request headers

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

company_companies_id_management_summary_reports_report_id_patch

CompanyManagementSummary company_companies_id_management_summary_reports_report_id_patch(id, report_id, operations)

Update Management Summary

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

id = 56 # Integer | 

report_id = 56 # Integer | 

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


begin
  result = api_instance.company_companies_id_management_summary_reports_report_id_patch(id, report_id, operations)
  p result
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_report_id_patch: #{e}"
end

Parameters

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

Return type

CompanyManagementSummary

Authorization

BasicAuth

HTTP request headers

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

company_companies_id_management_summary_reports_report_id_put

CompanyManagementSummary company_companies_id_management_summary_reports_report_id_put(id, report_id, management_summary)

Replace Management Summary

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

id = 56 # Integer | 

report_id = 56 # Integer | 

management_summary = ConnectWise::CompanyManagementSummary.new # CompanyManagementSummary | 


begin
  result = api_instance.company_companies_id_management_summary_reports_report_id_put(id, report_id, management_summary)
  p result
rescue ConnectWise::ApiError => e
  puts "Exception when calling CompanyManagementSummaryReportsApi->company_companies_id_management_summary_reports_report_id_put: #{e}"
end

Parameters

Name Type Description Notes
id Integer
report_id Integer
management_summary CompanyManagementSummary

Return type

CompanyManagementSummary

Authorization

BasicAuth

HTTP request headers

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