Welcome to Zuora Product Documentation

Explore our rich library of product information

Return events

Describes the custom events returned by product add, quote update, and other mutation helpers, and shows how to dispatch them.

Product add helpers

  • Returned event: CustomEvent('addproducts')

Quote update helpers

  • Returned event: CustomEvent('updatequote')

All other mutation helpers

  • Returned event: CustomEvent('updateproducts')

Example

const event = zqf.updateCharge(timelineId, chargeIdOrKey, {
    zqu__Quantity__c: 7
});

this.dispatchEvent(event);