curl --request GET \ --url https://api.tableflow.com/v2/flows/runs/fr_abc123def456 \ --header 'Authorization: Bearer YOUR_API_KEY'
{ "id": "fr_abc123def456", "flow_id": "dk4g1tUg1uHLs8YU", "workspace_id": "uT2bJNWN75YPU95r", "status": "completed", "status_history": [ { "status": "processing", "time": 1682366228, "message": "Flow started via api" }, { "status": "completed", "time": 1682366258, "message": "Flow completed successfully" } ], "error": null, "metadata": { "customer_id": "12345", "order_number": "PO-2024-001" }, "trigger_method": "api", "start_time": 1682366228, "end_time": 1682366258, "duration": 30000, "drive_files": { "reconciliation": { "file_id": "1ABC123DEF456", "mime_type": "application/vnd.google-apps.spreadsheet", "sheets": [ { "sheet_id": 0, "title": "Reconciliation Results" } ] } }, "flow": { "id": "dk4g1tUg1uHLs8YU", "workspace_id": "uT2bJNWN75YPU95r", "name": "PO to Invoice Reconciliation", "description": "Match purchase orders with invoices and verify totals", "steps": [ { "id": "step_1", "title": "Extract Purchase Order", "type": "extraction" }, { "id": "step_2", "title": "Extract Invoice", "type": "extraction" }, { "id": "step_3", "title": "Reconcile Documents", "type": "reconciliation" } ], "active": true }, "created_at": 1682366228, "updated_at": 1682366258 }
Get the status and details of a flow run
processing
review
completed
failed
Show Status History Entry