Paddle Billing
Search

Paddle.Update()

Updates values passed to Paddle.js during initialization.

Use Paddle.Update() to update values sent to Paddle.js during initialization. This is typically used when working with single page applications to pass an updated customer to pwCustomer when a customer is identified.

You must call Paddle.Initalize() before calling Paddle.Update(). Use the Paddle.Initialized flag to determine whether you need to call Paddle.Initialize() or Paddle.Update().

Parameters

pwCustomerobject or null

Identifier for a logged-in customer for Paddle Retain. Pass an empty object if you don't have a logged-in customer. Paddle Retain is only loaded for live accounts.

idstring

Paddle ID of a customer entity, prefixed ctm_. Only customer IDs are accepted. Don't pass subscription IDs, other Paddle IDs, or your own internal identifiers for a customer.

eventCallback(event: EventData) => void or null

Function to call for Paddle.js events.

Examples

Related pages