Submit Workflow Execution Actuals

GA
POST

Used to submit feedback regarding the quality of previous workflow execution and its outputs.

Note: Uses a base url of https://predict.vellum.ai.

Request

This endpoint expects an object.
actuals
list of unionsRequired
Feedback regarding the quality of an output on a previously executed workflow.
execution_id
stringOptional

The Vellum-generated ID of a previously executed workflow. Must provide either this or external_id.

external_id
stringOptional

The external ID that was originally provided by when executing the workflow, if applicable, that you’d now like to submit actuals for. Must provide either this or execution_id.

POST
1curl -X POST https://predict.vellum.ai/v1/submit-workflow-execution-actuals \
2 -H "X_API_KEY: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "actuals": []
6}'