Update a product charge definition

Update a product charge definition.

Note: This operation requires the Attribute-based Pricing feature to be enabled, which is in the Early Adopter phase.

Request
path Parameters
product-charge-definition-key
required
string

The unique number or ID of the product charge definition to be updated.

header Parameters
Accept-Encoding
string

Include the Accept-Encoding: gzip header to compress responses as a gzipped file. It can significantly reduce the bandwidth required for a response.

If specified, Zuora automatically compresses responses that contain over 1000 bytes of data, and the response contains a Content-Encoding header with the compression algorithm so that your client can decompress it.

Content-Encoding
string

Include the Content-Encoding: gzip header to compress a request. With this header specified, you should upload a gzipped file for the request payload instead of sending the JSON payload.

Authorization
string

The value is in the Bearer {token} format where {token} is a valid OAuth token generated by calling Create an OAuth token.

Zuora-Track-Id
string <= 64 characters

A custom identifier for tracing the API call. If you set a value for this header, Zuora returns the same value in the response headers. This header enables you to associate your system process identifiers with Zuora API calls, to assist with troubleshooting in the event of an issue.

The value of this field must use the US-ASCII character set and must not include any of the following characters: colon (:), semicolon (;), double quote ("), and quote (').

Zuora-Entity-Ids
string

An entity ID. If you have Zuora Multi-entity enabled and the OAuth token is valid for more than one entity, you must use this header to specify which entity to perform the operation in. If the OAuth token is only valid for a single entity, or you do not have Zuora Multi-entity enabled, you do not need to set this header.

Request Body schema: application/json
required
billingPeriod
string

The override value of the billingPeriod for the product charge definition.

billingTiming
string

The override value of the billingTiming for the product charge definition.

Enum: "IN_ADVANCE" "IN_ARREARS"
chargeModel
string

Determines how to calculate charges. Charge models must be individually activated in Zuora Billing administration.

Enum: "DiscountFixedAmount" "DiscountPercentage" "FlatFee" "PerUnit" "Tiered" "Volume" "Delivery"
defaultQuantity
number or null

The default quantity.

This field is applicable only for one-time and recurring charges.

effectiveEndDate
string <date-time>

The effective end date of the product charge definition.

effectiveStartDate
string <date-time>

The effective start date of the product charge definition.

listPriceBase
string

The list price base.

This field is applicable only for recurring charges.

Note: The Per_Year enum value is available only if you have the Annual List Price feature enabled.

Enum: "Per_Billing_Period" "Per_Month" "Per_Week" "Per_Year"
Array of objects (prices)

Container for the new prices to override the existing prices of the product charge definition.

specificBillingPeriod
number or null

The override value of the specificBillingPeriod for the product charge definition.

specificListPriceBase
integer or null <int32> [ 1 .. 200 ]

The number of months for the list price base of the charge definition. The field is null if the listPriceBase field is not set to Per_Specific_Months.

taxCode
string <= 64 characters

Specifies the tax code for taxation rules. This field is equired when the Taxable field is set to True.

Note: This value affects the tax calculation of the charge.

taxMode
string or null

Determines how to define taxation for the charge. This field is equired when the Taxable field is set to True.

Note: This value affects the tax calculation of the charge.

Enum: "TaxExclusive" "TaxInclusive" null
taxable
boolean

Determines whether the charge definition is taxable. When this field is set to True, the TaxMode and TaxCode fields are required.

Character limit: 5

Values: True, False

Note: This value affects the tax calculation of the charge.

term
number or null

The number of periods of a termed subscription that is eligible for this charge definition. This field is applicable when the termType field is set to TERMED, and is to be used together with the termPeriodType field.

termPeriodType
string or null

Specifies the period type for the subscription term that is eligible for this charge definition.

Enum: "Month" "Year" "Day" "Week" null
termType
string or null

The type of the subscription that is eligible for this charge definition.

Enum: "TERMED" "EVERGREEN" null
uom
string or null

Describes the unit of measure (UOM) configured in Settings > Billing.

Values: Each, License, Seat, or null

Responses
200
put/v1/product-charge-definitions/{product-charge-definition-key}
Request samples
application/json
{
  • "billingPeriod": "Specific_Months",
  • "defaultQuantity": 10,
  • "effectiveEndDate": "2024-07-01 00:00:00",
  • "effectiveStartDate": "2024-01-01 00:00:00",
  • "listPriceBase": "Per_Billing_Period",
  • "prices": [
    ],
  • "specificBillingPeriod": 5,
  • "specificListPriceBase": 10,
  • "term": 12,
  • "termPeriodType": "Month",
  • "termType": "TERMED",
  • "uom": "Each"
}
Response samples
application/json
{
  • "applyDiscountTo": null,
  • "billingPeriod": "Month",
  • "billingPeriodAlignment": "AlignToCharge",
  • "billingTiming": "IN_ADVANCE",
  • "chargeModel": "FlatFee",
  • "defaultQuantity": 1,
  • "discountClass": null,
  • "discountLevel": null,
  • "effectiveEndDate": "2023-10-13 09:00:00",
  • "effectiveStartDate": "2022-10-07 09:00:00",
  • "isDefault": true,
  • "listPriceBase": "Per_Billing_Period",
  • "numberOfPeriods": null,
  • "prices": [
    ],
  • "productChargeDefinitionId": "2c9890f78b0d09d2018b0d13c7fd0004",
  • "productChargeDefinitionNumber": "CD-00000201",
  • "productRatePlanChargeId": "2c9890f78b0d09d2018b0d13c7fd0004",
  • "productRatePlanChargeNumber": null,
  • "productRatePlanId": null,
  • "productRatePlanName": null,
  • "productRatePlanNumber": null,
  • "ratingGroup": null,
  • "smoothingModel": null,
  • "specificBillingPeriod": null,
  • "specificListPriceBase": null,
  • "success": true,
  • "taxCode": "",
  • "taxMode": null,
  • "taxable": false,
  • "term": null,
  • "termPeriodType": null,
  • "termType": null,
  • "uom": null
}