Webhook test

[insert_php]

$body = file_get_contents(“php://input”);
$webhook = json_decode($body, true);

echo “Here:”;
print_r($webhook);
print_r($_POST);

[/insert_php]