n8n Webhook Intake Handler
Parsing multi-step Gravity Forms submissions and dispatching job payloads to n8n.
add_action('gform_after_submission', function($entry, $form) { wp_remote_post('https://n8n.example.com/webhook/booking', ['body' => $entry]); }, 10, 2);