Skip to main content
GET
/
workflows
/
v1
/
workflow-runs
/
{workflow_run_id}
/
evaluation-result
Get Workflow Run Evaluation Result
curl --request GET \
  --url https://api-qa.interactly.ai/workflows/v1/workflow-runs/{workflow_run_id}/evaluation-result \
  --header 'Authorization: Bearer <token>'
{
  "evaluation_workflow_run_id": "<string>",
  "status": "<string>",
  "evaluation_result": {}
}

Authorizations

Authorization
string
header
required

Retrieve your API Key from Dashboard API Keys Section.

Path Parameters

workflow_run_id
string
required
Required string length: 24
Example:

"5eb7cf5a86d9755df3a6c593"

Response

Successful Response

Response model for evaluation results of a workflow run. Contains the evaluation workflow run ID, status, and the runtime variables from the last WorkflowShowStateEvent.

evaluation_workflow_run_id
string
required

ID of the evaluation workflow run

status
string
required

Status of the evaluation workflow run (e.g., 'completed', 'running', 'failed')

evaluation_result
Evaluation Result · object

The runtime variables from the last WorkflowShowStateEvent in the evaluation run. Contains the evaluation output/scores. None if no WorkflowShowStateEvent was found.