This endpoint initiates the execution of a workflow, and returns the workflow run ID.
id immediately and does not wait for completion.
To monitor the workflow’s progress and get results, use the Get Workflow Run endpoint with the returned id. A common pattern is to poll this endpoint periodically until the workflow completes.The ID of the workflow to be run.
"wkfv2_bZNg4zPR44mA"
The ID of the node to start the workflow with.
"ncc6725"
The URL to which the workflow results should be sent to on completion.
"https://myapp.com/webhook"
Variables that the workflow can use globally and their values.
{
"first_name": "Sam",
"last_name": "Altman"
}