All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0
Method | HTTP request | Description |
---|---|---|
company_address_formats_count_get | GET /company/addressFormats/count | |
company_address_formats_get | GET /company/addressFormats | |
company_address_formats_id_delete | DELETE /company/addressFormats/{id} | |
company_address_formats_id_get | GET /company/addressFormats/{id} | |
company_address_formats_id_patch | PATCH /company/addressFormats/{id} | |
company_address_formats_id_put | PUT /company/addressFormats/{id} | |
company_address_formats_post | POST /company/addressFormats |
Count company_address_formats_count_get(opts)
Get Address Formats 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::AddressFormatsApi.new
opts = {
conditions: "conditions_example" # String |
}
begin
result = api_instance.company_address_formats_count_get(opts)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_count_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] |
- Content-Type: Not defined
- Accept: application/json
Array<AddressFormat> company_address_formats_get(opts)
Get Address Formats
# 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::AddressFormatsApi.new
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_address_formats_get(opts)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] | |
order_by | String | [optional] | |
childconditions | String | [optional] | |
customfieldconditions | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json
company_address_formats_id_delete(id)
Delete Address Format 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::AddressFormatsApi.new
id = 56 # Integer |
begin
api_instance.company_address_formats_id_delete(id)
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
AddressFormat company_address_formats_id_get(id)
Get Address Format 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::AddressFormatsApi.new
id = 56 # Integer |
begin
result = api_instance.company_address_formats_id_get(id)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
- Content-Type: Not defined
- Accept: application/json
AddressFormat company_address_formats_id_patch(id, operations)
Update Address Format
# 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::AddressFormatsApi.new
id = 56 # Integer |
operations = [ConnectWise::PatchOperation.new] # Array<PatchOperation> |
begin
result = api_instance.company_address_formats_id_patch(id, operations)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_id_patch: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
operations | Array<PatchOperation> |
- Content-Type: application/json
- Accept: application/json
AddressFormat company_address_formats_id_put(id, address_format)
Replace Address Format
# 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::AddressFormatsApi.new
id = 56 # Integer |
address_format = ConnectWise::AddressFormat.new # AddressFormat |
begin
result = api_instance.company_address_formats_id_put(id, address_format)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
address_format | AddressFormat |
- Content-Type: application/json
- Accept: application/json
AddressFormat company_address_formats_post(address_format)
Create Address Format
# 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::AddressFormatsApi.new
address_format = ConnectWise::AddressFormat.new # AddressFormat |
begin
result = api_instance.company_address_formats_post(address_format)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling AddressFormatsApi->company_address_formats_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
address_format | AddressFormat |
- Content-Type: application/json
- Accept: application/json