Hey guys
Is there a way to run previous webhooks but with different data? That is, with the option of running the same webhook but just changing its phone number?
What happens today is that I have to go to external systems like Postman and it’s super inefficient.
Thanks!
Yes, with one limitation: Run with existing data replays the trigger output from a previous run as-is. It does not provide an editor for changing one value inside that saved webhook bundle. In the scenario builder, use the arrow beside Run once, select the previous run, and then run it again. Make documents that behavior here: Scenario run replay - Help Center
For a different phone number without returning to Postman, add a temporary Tools > Set variable module immediately after the webhook. Call it something like effective_phone, enter the test number there, and map downstream phone fields from effective_phone instead of directly from the webhook. Then replay the old run. The rest of the captured payload stays realistic while only the phone value is overridden. Disable any real SMS or CRM-write step, or point it at a sandbox, before testing.
If this will be a regular test workflow, the cleaner design is to move the reusable logic into a subscenario with scenario inputs and call it from a small test scenario where the phone value is editable.
TinyOps Studio can set up and verify that replay-safe test path as a fixed $149 review/build. DM me a redacted blueprint and identify which module should receive the substituted phone number, and I can confirm the scope.
Make can re-run a webhook execution, but only with the original data — there’s no built-in “edit payload and replay”. The practical way: open the run in History, copy the incoming payload, change the phone number, and re-send it to the webhook URL yourself (Postman, curl, or even a tiny helper scenario with an HTTP module). Same effect, full control over what changes.
