Retrieves the Subscription product pricing charges

get

/ccstore/v1/selfservice/subscriptionProducts/{id}/charges

based on id.

Request

Supported Media Types
Path Parameters
Query Parameters
  • The batch size of the subscription products covered assets to be fetched together. Default limit is 25, max limit is also 25
  • The offset of the page. By default, offset is 0, which means first page will be returned.
  • Specifies a comma-separated list of pairs to order the response by.
  • parameters to filter the result.
  • it provides the number of total results. Default is false
Back to Top

Response

Supported Media Types

200 Response

Response containing the subscription product detail
Body ()
Root Schema : getSubscriptionProductPricingCharges_Response
Type: object
Show Source
  • The number of resource instances returned in the current range.
  • Indicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
  • Items
    Title: Items
    The items in the collection.
  • The actual paging size used by the server.
  • The offset value used in the current page.
  • The estimated row count when "?totalResults=true", otherwise the count is not included.
Example:
{
    "offset":0,
    "count":3,
    "hasMore":false,
    "limit":25,
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:8080/ccstore/v1/selfservice/subscriptionProducts/BIQA_OTBI_SM5-PRDT-8012/charges"
        }
    ],
    "items":[
        {
            "ChargePuid":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7055",
            "UnitListPrice":"2000",
            "ChargeDefinition":"QP_SALE_PRICE",
            "ChargeName":"Activation Fee",
            "Allowance":null,
            "PriceType":"ONE_TIME",
            "@context":{
                "headers":{
                    "ETag":"ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                },
                "key":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7055"
            }
        },
        {
            "ChargePuid":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7057",
            "UnitListPrice":"10",
            "ChargeDefinition":"USAGE_CHARGESPM",
            "ChargeName":"USAGE SPM CHARGE",
            "Allowance":null,
            "PriceType":"RECURRING",
            "@context":{
                "headers":{
                    "ETag":"ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000278"
                },
                "key":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7057"
            }
        },
        {
            "ChargePuid":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7056",
            "UnitListPrice":"200",
            "ChargeDefinition":"QP_RECURRING_SALE_PRICE",
            "ChargeName":"Monthly Fee",
            "Allowance":null,
            "PriceType":"RECURRING",
            "@context":{
                "headers":{
                    "ETag":"ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
                },
                "key":"BIQA_OTBI_SM5-PRDT-8012-CHRG-7056"
            }
        }
    ]
}
Nested Schema : Items
Type: array
Title: Items
The items in the collection.
Show Source
Nested Schema : items
Type: object
Show Source

Default Response

The error response. The following are the internal error codes thrown by this API when the request processing fails in Oracle Commerce Cloud: |Error Code|Description| |------------------|------------------| |59000|If there is a missing required property.| |59002|If request can't be processed currently.| |59003|If there is any invalid path parameter| |59004|If resource is not found| |59005|If error occurred while processing input.| |59008|If any issue occurred while triggering the fusion| |59010|If self service is not enabled|
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top