Module · A system, a clock or a person✅Knowledge checkCheck: everything else that starts a run4 questions · Pass at 60%1. You have placed a Webhook trigger and want the URL to give to a partner. How do you get it?Type it into webhook_url, using the workflow's own idCopy it from the workflow's settings panel before savingRequest it on the integrations screen, one per organisationSave the workflow — it is generated then, and shown in the panel2. A partner posts {"email": "priya@example.com"}. Which reference reads it?{{webhooktrigger_1.body.email}}{{webhooktrigger_1.email}}{{webhooktrigger_1.payload.body.email}}{{webhooktrigger_1.params.email}}3. A Google Calendar workflow never fires. trigger_events is set to ["event_starting"]. What is wrong?The event is real but needs lead_time_value set before it firesThe string is event_starting_soon, and a wrong one fails silentlyevent_starting works only on the organisation's primary calendarNothing is wrong; calendar triggers can take an hour to start4. A colleague tidies a spreadsheet column from “Email” to “Email Address”. What happens to a workflow reading row_data.Email?It errors on the next row, naming the column it could not findIt keeps working, since columns are matched by positionThe trigger stops firing until the old header is restoredIt runs on, reading an empty value, with no error at allCheck answers← Back to Triggers — every way a workflow starts