Canceled
This event is triggered when a subscription is canceled by the merchant.
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 has been canceled.
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 canceled.
The current status of the subscription. For this event, the status will typically
be CANCELED
.
The recurring payment amount for the subscription, expressed in the smallest unit
of the currency. Here, 10000
represents 100.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 before cancellation.
The billing interval for the subscription, such as MINUTE
, MONTH
, or YEAR
.
Specifies the number of intervals between billing cycles. For instance, if interval
is MINUTE
and intervalCount
is 2
, the subscription was billed every two minutes.
The next payment date for the subscription. This will typically be null
when
the subscription is canceled.
The number of billing cycles remaining for the subscription. For example, if the
subscription was set for 3 cycles and was canceled before completion, the remaining
cycle count will be 3
.