All URIs are relative to https://rest.zuora.com
Method | HTTP request | Description |
---|---|---|
object_delete_product_rate_plan | DELETE /v1/object/product-rate-plan/{id} | CRUD: Delete ProductRatePlan |
object_get_product_rate_plan | GET /v1/object/product-rate-plan/{id} | CRUD: Retrieve ProductRatePlan |
object_post_product_rate_plan | POST /v1/object/product-rate-plan | CRUD: Create ProductRatePlan |
object_put_product_rate_plan | PUT /v1/object/product-rate-plan/{id} | CRUD: Update ProductRatePlan |
ProxyDeleteResponse object_delete_product_rate_plan(id, opts)
CRUD: Delete ProductRatePlan
# load the gem
require 'zuora'
api_instance = Zuora::ProductRatePlansApi.new
id = "id_example" # String | Object id
opts = {
entity_id: "entity_id_example", # String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
entity_name: "entity_name_example" # String | The [name of the entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/B_Introduction_to_Entity_and_Entity_Hierarchy#Name_and_Display_Name) that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
}
begin
#CRUD: Delete ProductRatePlan
result = api_instance.object_delete_product_rate_plan(id, opts)
p result
rescue Zuora::ApiError => e
puts "Exception when calling ProductRatePlansApi->object_delete_product_rate_plan: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | Object id | |
entity_id | String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
entity_name | String | The name of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
No authorization required
- Content-Type: application/json; charset=utf-8
- Accept: application/json; charset=utf-8
ProxyGetProductRatePlan object_get_product_rate_plan(id, opts)
CRUD: Retrieve ProductRatePlan
# load the gem
require 'zuora'
api_instance = Zuora::ProductRatePlansApi.new
id = "id_example" # String | Object id
opts = {
entity_id: "entity_id_example", # String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
entity_name: "entity_name_example" # String | The [name of the entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/B_Introduction_to_Entity_and_Entity_Hierarchy#Name_and_Display_Name) that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
fields: "fields_example" # String | Object fields to return
}
begin
#CRUD: Retrieve ProductRatePlan
result = api_instance.object_get_product_rate_plan(id, opts)
p result
rescue Zuora::ApiError => e
puts "Exception when calling ProductRatePlansApi->object_get_product_rate_plan: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | Object id | |
entity_id | String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
entity_name | String | The name of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
fields | String | Object fields to return | [optional] |
No authorization required
- Content-Type: application/json; charset=utf-8
- Accept: application/json; charset=utf-8
ProxyCreateOrModifyResponse object_post_product_rate_plan(create_request, opts)
CRUD: Create ProductRatePlan
# load the gem
require 'zuora'
api_instance = Zuora::ProductRatePlansApi.new
create_request = Zuora::ProxyCreateProductRatePlan.new # ProxyCreateProductRatePlan |
opts = {
entity_id: "entity_id_example", # String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
entity_name: "entity_name_example" # String | The [name of the entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/B_Introduction_to_Entity_and_Entity_Hierarchy#Name_and_Display_Name) that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
}
begin
#CRUD: Create ProductRatePlan
result = api_instance.object_post_product_rate_plan(create_request, opts)
p result
rescue Zuora::ApiError => e
puts "Exception when calling ProductRatePlansApi->object_post_product_rate_plan: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
create_request | ProxyCreateProductRatePlan | ||
entity_id | String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
entity_name | String | The name of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
No authorization required
- Content-Type: application/json; charset=utf-8
- Accept: application/json; charset=utf-8
ProxyCreateOrModifyResponse object_put_product_rate_plan(id, modify_request, opts)
CRUD: Update ProductRatePlan
# load the gem
require 'zuora'
api_instance = Zuora::ProductRatePlansApi.new
id = "id_example" # String | Object id
modify_request = Zuora::ProxyModifyProductRatePlan.new # ProxyModifyProductRatePlan |
opts = {
entity_id: "entity_id_example", # String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
entity_name: "entity_name_example" # String | The [name of the entity](https://knowledgecenter.zuora.com/BB_Introducing_Z_Business/Multi-entity/B_Introduction_to_Entity_and_Entity_Hierarchy#Name_and_Display_Name) that you want to access. Note that you must have permission to access the entity. For more information, see [REST Authentication](https://www.zuora.com/developer/api-reference/#section/Authentication/Entity-Id-and-Entity-Name).
}
begin
#CRUD: Update ProductRatePlan
result = api_instance.object_put_product_rate_plan(id, modify_request, opts)
p result
rescue Zuora::ApiError => e
puts "Exception when calling ProductRatePlansApi->object_put_product_rate_plan: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
id | String | Object id | |
modify_request | ProxyModifyProductRatePlan | ||
entity_id | String | The Id of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
entity_name | String | The name of the entity that you want to access. Note that you must have permission to access the entity. For more information, see REST Authentication. | [optional] |
No authorization required
- Content-Type: application/json; charset=utf-8
- Accept: application/json; charset=utf-8