Skip to content

Latest commit

 

History

History
392 lines (255 loc) · 9.12 KB

ContactDepartmentsApi.md

File metadata and controls

392 lines (255 loc) · 9.12 KB

Connectwise::ContactDepartmentsApi

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

Method HTTP request Description
company_contacts_departments_count_get GET /company/contacts/departments/count
company_contacts_departments_get GET /company/contacts/departments
company_contacts_departments_id_delete DELETE /company/contacts/departments/{id}
company_contacts_departments_id_get GET /company/contacts/departments/{id}
company_contacts_departments_id_patch PATCH /company/contacts/departments/{id}
company_contacts_departments_id_put PUT /company/contacts/departments/{id}
company_contacts_departments_post POST /company/contacts/departments

company_contacts_departments_count_get

Count company_contacts_departments_count_get(opts)

Get Contact Departments 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::ContactDepartmentsApi.new

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

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

Parameters

Name Type Description Notes
conditions String [optional]

Return type

Count

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_get

Array<ContactDepartment> company_contacts_departments_get(opts)

Get Contact Departments

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

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

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

Parameters

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

Return type

Array<ContactDepartment>

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_id_delete

company_contacts_departments_id_delete(id)

Delete Contact Department 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::ContactDepartmentsApi.new

id = 56 # Integer | 


begin
  api_instance.company_contacts_departments_id_delete(id)
rescue Connectwise::ApiError => e
  puts "Exception when calling ContactDepartmentsApi->company_contacts_departments_id_delete: #{e}"
end

Parameters

Name Type Description Notes
id Integer

Return type

nil (empty response body)

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_id_get

ContactDepartment company_contacts_departments_id_get(id)

Get Contact Department 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::ContactDepartmentsApi.new

id = 56 # Integer | 


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

Parameters

Name Type Description Notes
id Integer

Return type

ContactDepartment

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_id_patch

ContactDepartment company_contacts_departments_id_patch(id, operations)

Update Contact Department

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

id = 56 # Integer | 

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


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

Parameters

Name Type Description Notes
id Integer
operations Array<PatchOperation>

Return type

ContactDepartment

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_id_put

ContactDepartment company_contacts_departments_id_put(id, contact_department)

Replace Contact Department

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

id = 56 # Integer | 

contact_department = Connectwise::ContactDepartment.new # ContactDepartment | 


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

Parameters

Name Type Description Notes
id Integer
contact_department ContactDepartment

Return type

ContactDepartment

Authorization

BasicAuth

HTTP request headers

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

company_contacts_departments_post

ContactDepartment company_contacts_departments_post(contact_department)

Create Contact Department

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

contact_department = Connectwise::ContactDepartment.new # ContactDepartment | 


begin
  result = api_instance.company_contacts_departments_post(contact_department)
  p result
rescue Connectwise::ApiError => e
  puts "Exception when calling ContactDepartmentsApi->company_contacts_departments_post: #{e}"
end

Parameters

Name Type Description Notes
contact_department ContactDepartment

Return type

ContactDepartment

Authorization

BasicAuth

HTTP request headers

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