umm_stripe_status_revoked

Fires once a subscription & account status has been revoked from a WP account.

Since 1.0.0
do_action( 'umm_stripe_status_revoked', $old_user_id, $role_inactive )

Parameters

$old_user_id integer
The WordPress User ID of the previous Stripe Customer account owner
$role_inactive string
Role slug of the Canceled or Refunded event.

Sample Usage

add_action( 'umm_stripe_status_revoked', 'um_04172024_stripe_status_revoked', 10, 2 );
function um_04172024_stripe_status_revoked( $old_user_id, $role_inactive ){
 // do something
}

Nothing was found