gravityflow_post_webhook
The gravityflow_post_webhook action fires after the webhook request.
Example usage:
add_action( 'gravityflow_post_webhook', 'sh_action_gravityflow_post_webhook', 10, 4 ); function sh_action_gravityflow_post_webhook( $response, $args, $entry, $current_step ) { // Do something after the webhook request }
Placement
This code should be placed in the functions.php file of your active theme.