POST https://flowapp.nuraml.com/api/blueprint/run
This endpoint is used to schedule a run of a blueprint version.
curlcurl -X POST \ -H "Content-Type: application/json" \ -H "flow-api-key: your_api_key_here" \ -d '{"versionId": "your_version_id", "nodeValues": {"key": "value"}}' \ https://flowapp.nuraml.com/api/blueprint/run
flow-api-key | string | required |
versionId | string | required |
The version id specific to the blueprint that is being scheduled to run.
nodeValues | string | required |
The node values that will be used as input to the blueprint version.
This response will match the following schema
taskId | string |
The response task id will be the id of the specific tasks that has been scheduled. Refer to the task API reference for more details.