All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0
Method | HTTP request | Description |
---|---|---|
company_management_id_management_report_notifications_count_get | GET /company/management/{id}/managementReportNotifications/count | |
company_management_id_management_report_notifications_get | GET /company/management/{id}/managementReportNotifications | |
company_management_id_management_report_notifications_management_report_notification_id_delete | DELETE /company/management/{id}/managementReportNotifications/{managementReportNotificationId} | |
company_management_id_management_report_notifications_management_report_notification_id_get | GET /company/management/{id}/managementReportNotifications/{managementReportNotificationId} | |
company_management_id_management_report_notifications_management_report_notification_id_patch | PATCH /company/management/{id}/managementReportNotifications/{managementReportNotificationId} | |
company_management_id_management_report_notifications_management_report_notification_id_put | PUT /company/management/{id}/managementReportNotifications/{managementReportNotificationId} | |
company_management_id_management_report_notifications_post | POST /company/management/{id}/managementReportNotifications |
Count company_management_id_management_report_notifications_count_get(id, opts)
Get Management Report Notifications 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
opts = {
conditions: "conditions_example" # String |
}
begin
result = api_instance.company_management_id_management_report_notifications_count_get(id, opts)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_count_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
conditions | String | [optional] |
- Content-Type: Not defined
- Accept: application/json
Array<ManagementReportNotification> company_management_id_management_report_notifications_get(id, opts)
Get Management Report Notifications
# 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::ManagementReportNotificationsApi.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_management_id_management_report_notifications_get(id, opts)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_get: #{e}"
end
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] |
Array<ManagementReportNotification>
- Content-Type: Not defined
- Accept: application/json
company_management_id_management_report_notifications_management_report_notification_id_delete(id, management_report_notification_id)
Delete Management Report Notification 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
management_report_notification_id = 56 # Integer |
begin
api_instance.company_management_id_management_report_notifications_management_report_notification_id_delete(id, management_report_notification_id)
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_management_report_notification_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
management_report_notification_id | Integer |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
ManagementReportNotification company_management_id_management_report_notifications_management_report_notification_id_get(id, management_report_notification_id)
Get Management Report Notification 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
management_report_notification_id = 56 # Integer |
begin
result = api_instance.company_management_id_management_report_notifications_management_report_notification_id_get(id, management_report_notification_id)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_management_report_notification_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
management_report_notification_id | Integer |
- Content-Type: Not defined
- Accept: application/json
ManagementReportNotification company_management_id_management_report_notifications_management_report_notification_id_patch(id, management_report_notification_id, operations)
Update Management Report Notification
# 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
management_report_notification_id = 56 # Integer |
operations = [ConnectWise::PatchOperation.new] # Array<PatchOperation> |
begin
result = api_instance.company_management_id_management_report_notifications_management_report_notification_id_patch(id, management_report_notification_id, operations)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_management_report_notification_id_patch: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
management_report_notification_id | Integer | ||
operations | Array<PatchOperation> |
- Content-Type: application/json
- Accept: application/json
ManagementReportNotification company_management_id_management_report_notifications_management_report_notification_id_put(id, management_report_notification_id, management_report_notification)
Replace Management Report Notification
# 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
management_report_notification_id = 56 # Integer |
management_report_notification = ConnectWise::ManagementReportNotification.new # ManagementReportNotification |
begin
result = api_instance.company_management_id_management_report_notifications_management_report_notification_id_put(id, management_report_notification_id, management_report_notification)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_management_report_notification_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
management_report_notification_id | Integer | ||
management_report_notification | ManagementReportNotification |
- Content-Type: application/json
- Accept: application/json
ManagementReportNotification company_management_id_management_report_notifications_post(id, management_report_notification)
Create Management Report Notification
# 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::ManagementReportNotificationsApi.new
id = 56 # Integer |
management_report_notification = ConnectWise::ManagementReportNotification.new # ManagementReportNotification |
begin
result = api_instance.company_management_id_management_report_notifications_post(id, management_report_notification)
p result
rescue ConnectWise::ApiError => e
puts "Exception when calling ManagementReportNotificationsApi->company_management_id_management_report_notifications_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
management_report_notification | ManagementReportNotification |
- Content-Type: application/json
- Accept: application/json