make_run_scenario
Run a Make.com scenario on demand with optional input data, choosing to wait for the result or trigger it as fire-and-forget.
Instructions
Run a Make.com scenario on demand (right now). By default waits for the run to finish and returns the result (Make waits up to ~40s); set wait=false to trigger and return the executionId immediately without waiting. 'data' is optional input passed to the scenario (only relevant if it starts with a trigger that accepts input). NOTE: the scenario must be ACTIVE — Make returns HTTP 422 'Scenario is not activated' for an inactive scenario; if needed, activate it first with make_start_scenario.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Optional input data object passed to the scenario run | |
| wait | No | Wait for completion and return the result (default true). false = fire-and-forget, returns executionId. | |
| scenario_id | Yes | The scenario ID to run |