Cycle Charged
This event is triggered when a subscription’s billing cycle is successfully charged.
A unique identifier for this specific event. This ensures that each event can be tracked and processed individually.
Describes the type of event. In this case, it signifies that a subscription billing cycle has been successfully charged.
The timestamp when the event was generated, typically in milliseconds since the Unix epoch (January 1, 1970). This value can be used to track when the event occurred.
A unique identifier for the specific subscription that was charged for the current billing cycle.
Represents the current status of the subscription. For this event, the status will
typically be CHARGED
.
The amount charged for the current billing cycle, expressed in the smallest unit
of the currency. Here, 1500
represents 15.00 USD (as USD typically uses two decimal
places).
The currency used for the subscription payment. In this case, it is United States Dollars (USD).
The total number of billing cycles for the subscription. For example, 6
indicates
the subscription will be billed for 6 cycles.
The billing interval for the subscription, such as MONTH
or YEAR
.
Specifies the number of intervals between billing cycles. For instance, if interval
is MONTH
and intervalCount
is 1
, the subscription is billed monthly.
A timestamp indicating the date and time of the next scheduled payment, expressed in milliseconds since the Unix epoch.
The number of billing cycles remaining for the subscription. For instance, if the
total cycle count is 6 and 2 cycles have been completed, the remaining cycle count
will be 4
.