um_stripe_webhook_payload_event_init

Catch Stripe's Webhook Payload Events

Since 1.0.0
do_action( 'um_stripe_webhook_payload_event_init', $event )

Description

When Stripe sends a Webhook payload to the site, this hook is fired.

Parameters

$event object
Payload objects

Sample Usage

add_action( 'um_stripe_webhook_payload_event_init', 'um_04172024_stripe_webhook_payload_event_init', 10, 1 );
function um_04172024_stripe_webhook_payload_event_init( $event ){
 // do something
}