Endpoints
Run a Workflow
This endpoint initiates the execution of a workflow, and returns the workflow run ID.
POST
This endpoint initiates a workflow run asynchronously. It returns a workflow run 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.
Authorizations
Body
application/json
The ID of the workflow to be run.
Variables that the workflow can use globally and their values.
The ID of the node to start the workflow with.
The URL to which the workflow results should be sent to on completion.