v1

latestOpenAPI 3.1.02026-07-1711022.5 KB

Get Task Run Result

Get the results of a specific task run

get/task/{taskId}/run/result

Path parameters

taskIdstring required
Example:task_123

The ID of the task

Query parameters

runIdstring
Example:run_456

The ID of the run. If not provided, returns results of the most recent run.

Response

Successful response

successboolean

Indicates if the request was successful

errorstring

Error message if the request failed

Example response

{
  "success": true,
  "data": {
    "status": "completed",
    "output": {
      "summary": "Task completed successfully"
    },
    "dataTable": [
      {
        "title": "Sample Data",
        "value": 123
      }
    ]
  }
}