gravityflow_webhook_url_in_note

Use this filter to hide/unhide the URL appearing in notes when using the Outgoing Webhook step. It would be a valuable one to apply when API keys or basic authentication credentials are in the URL parameters.

Parameters

$show_url_in_note     boolean (Default is true)

Examples

This example hides the URL appearing in notes by overriding the default value true to false

add_filter('gravityflow_webhook_url_in_note', 'sh_gravityflow_webhook_url_in_note', 10, 2);
function sh_gravityflow_webhook_url_in_note( $show_url_in_note ) {
    $show_url_in_note = false;
    return $show_url_in_note;
}

Placement

This code should be placed in the functions.php file of your active theme.