All URIs are relative to https://api-na.myconnectwise.net/v4_6_release/apis/3.0
Method | HTTP request | Description |
---|---|---|
procurement_catalog_catalog_item_identifier_quantity_on_hand_get | GET /procurement/catalog/{catalogItemIdentifier}/quantityOnHand | |
procurement_catalog_count_get | GET /procurement/catalog/count | |
procurement_catalog_get | GET /procurement/catalog | |
procurement_catalog_id_delete | DELETE /procurement/catalog/{id} | |
procurement_catalog_id_get | GET /procurement/catalog/{id} | |
procurement_catalog_id_patch | PATCH /procurement/catalog/{id} | |
procurement_catalog_id_put | PUT /procurement/catalog/{id} | |
procurement_catalog_post | POST /procurement/catalog |
Count procurement_catalog_catalog_item_identifier_quantity_on_hand_get(catalog_item_identifier, opts)
Get Inventory Quantity On Hand
# 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::CatalogsItemApi.new
catalog_item_identifier = "catalog_item_identifier_example" # String |
opts = {
warehouse_bin_id: 56 # Integer |
}
begin
result = api_instance.procurement_catalog_catalog_item_identifier_quantity_on_hand_get(catalog_item_identifier, opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_catalog_item_identifier_quantity_on_hand_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
catalog_item_identifier | String | ||
warehouse_bin_id | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json
Count procurement_catalog_count_get(opts)
Get Catalogs 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::CatalogsItemApi.new
opts = {
conditions: "conditions_example" # String |
}
begin
result = api_instance.procurement_catalog_count_get(opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_count_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] |
- Content-Type: Not defined
- Accept: application/json
Array<CatalogItem> procurement_catalog_get(opts)
Get Catalogs
# 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::CatalogsItemApi.new
opts = {
conditions: "conditions_example" # String |
order_by: "order_by_example", # String |
page: 56, # Integer |
page_size: 56 # Integer |
}
begin
result = api_instance.procurement_catalog_get(opts)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
conditions | String | [optional] | |
order_by | String | [optional] | |
page | Integer | [optional] | |
page_size | Integer | [optional] |
- Content-Type: Not defined
- Accept: application/json
procurement_catalog_id_delete(id)
Delete Catalog 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::CatalogsItemApi.new
id = 56 # Integer |
begin
api_instance.procurement_catalog_id_delete(id)
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_id_delete: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
nil (empty response body)
- Content-Type: Not defined
- Accept: Not defined
CatalogItem procurement_catalog_id_get(id)
Get Catalog 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::CatalogsItemApi.new
id = 56 # Integer |
begin
result = api_instance.procurement_catalog_id_get(id)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_id_get: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer |
- Content-Type: Not defined
- Accept: application/json
CatalogItem procurement_catalog_id_patch(id, operations)
Update Catalog
# 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::CatalogsItemApi.new
id = 56 # Integer |
operations = [Connectwise::PatchOperation.new] # Array<PatchOperation> |
begin
result = api_instance.procurement_catalog_id_patch(id, operations)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_id_patch: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
operations | Array<PatchOperation> |
- Content-Type: application/json
- Accept: application/json
CatalogItem procurement_catalog_id_put(id, catalog_item)
Replace Catalog
# 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::CatalogsItemApi.new
id = 56 # Integer |
catalog_item = Connectwise::CatalogItem.new # CatalogItem |
begin
result = api_instance.procurement_catalog_id_put(id, catalog_item)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_id_put: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | Integer | ||
catalog_item | CatalogItem |
- Content-Type: application/json
- Accept: application/json
CatalogItem procurement_catalog_post(catalog_item)
Create Catalog
# 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::CatalogsItemApi.new
catalog_item = Connectwise::CatalogItem.new # CatalogItem |
begin
result = api_instance.procurement_catalog_post(catalog_item)
p result
rescue Connectwise::ApiError => e
puts "Exception when calling CatalogsItemApi->procurement_catalog_post: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
catalog_item | CatalogItem |
- Content-Type: application/json
- Accept: application/json