The WorkflowRun object is the core object of the WorkflowRun API. It represents a single run of a workflow and contains all the information about the run, including the output data, the workflow that was run, and the status of the run.Documentation Index
Fetch the complete documentation index at: https://docs.extend.app/llms.txt
Use this file to discover all available pages before exploring further.
Hide properties
Hide properties
The type of the object, in this case it will always be “workflow_run”.
An ID corresponding to a specific File x Workflow combination representing the
specific WorkflowRun for a File.
The name of the WorkflowRun. Autogenerated by Extend using fileName if not
provided at creation time.
The batch ID of the WorkflowRun. If that WorkflowRun was created from a batch
of files, all runs in that batch will have the same batch ID.
The status of a WorkflowRun. The options are “PENDING” (if the WorkflowRun is
waiting to start execution), “PROCESSING” (if the WorkflowRun is currently running), “FAILED” (if the WorkflowRun failed), “NEEDS_REVIEW” (if the
WorkflowRun needs to be reviewed manually in the UI), “REVIEWED” (if the
WorkflowRun has been manually reviewed and corrected), “PROCESSED” (if the
WorkflowRun is fully processed.)
Unique URL that can be used to route to the WorkflowRun review experience in
Extend.
The metadata that was passed in when running the Workflow.
The time (in UTC) at which the workflow was initially run.
An optional field that will only be present if applicable. This will be the
error message if the WorkflowRun failed.
An optional field that will only be present if applicable. This will be the
user ID of the person who reviewed the WorkflowRun.
An optional field that will only be present if applicable. The time (in UTC)
at which the WorkflowRun review step was completed.
The start time (in UTC) of the WorkflowRun.
An optional field that will only be present if applicable. The end time (in
UTC) of the WorkflowRun.
The files that were processed in this WorkflowRun.See the File object for more details.
An array of DocumentProcessorRun objects corresponding to Extraction, Classification, and Instruct QA steps.
This will contain the initial output, reviewed output, and final output of the DocumentProcessorRun.
Show properties
Show properties
Type of the object, always ‘document_processor_run’.
The unique identifier for the document processor run.
Whether the document processor run has been edited.
A hash of the edits (original + edited values + operator notes, if any) made to the document processor run. Values conform to the value types of the fields.
The type of the document processor run. Either
EXTRACT, CLASSIFY, SPLITTER, or INSTRUCT_QA.The config of the document processor run. The shape of output depends on the document processor
type.
Details for each can be found in the Output and Config types page.The initial raw output from the document processor. This is always set.
The shape of output depends on the document processor
type.
Details for each can be found in the Output and Config types page.An optional field that shows the output after review, if applicable.
The shape of output depends on the document processor
type.
Details for each can be found in the Output and Config types page.The final output, either reviewed or initial. You can rely on this to be always set as the final output (initial or post review when reviewed).
The shape of output depends on the document processor
type.
Details for each can be found in the Output and Config types page.An array of WorkflowStepRun objects.
Each WorkflowStepRun represents a single run of a WorkflowStep and contains details about the step and the run’s output.Note: This field currently supports External Data Validation and Rule Validation step types.
Document processor run outputs are included in the
outputs field.Show properties
Show properties
The type of response, in this case it will always be “workflow_step_run”.
The unique identifier of the WorkflowStepRun.
The status of the WorkflowStepRun.One of:
PENDING, PROCESSING, PROCESSED, FAILEDThe output of the WorkflowStepRun.
The shape of the output depends on the type of the WorkflowStep in the
step field below.EXTERNAL_DATA_VALIDATIONShow properties
Show properties
The output will be the same object that was returned by the external endpoint configured for this step.
RULE_VALIDATIONShow properties
Show properties
Indicates whether the entire validation step passed. This field will only be
true if every validation rule passed.Hide properties
Hide properties
The name of the validation rule.
Indicates whether this validation rule passed or not.
This field will be
true only if the formula evaluates to true.
If the rule’s formula is array valued, then this field will only be true if the formula evaluates to true for every item in the array.Only present if the validation rule’s formula is array valued. This field contains the formula’s evaluated result for every item in the array.
If the validation rule is not valid, then this describes why the rule failed.
RULE_FAILED: The formula evaluated to false or null.PARSE_ERROR: The formula could not be parsed.VALUE_ERROR: An error occurred while evaluating the formula.If the
failureReason is PARSE_ERROR or VALUE_ERROR, then this field contains the error’s details.{
"object": "workflow_run",
"id": "workflow_run_1234",
"status": "PROCESSED",
"metadata": {
"internal_id": "id_1234"
},
"initialRunAt": "2023-01-01T09:41:00.000Z",
"reviewedBy": "user_1234",
"reviewedAt": "2023-01-10T05:39:14.500Z",
"startTime": "2023-01-01T09:41:00.000Z",
"endTime": "2023-01-10T05:39:24.500Z",
"outputs": [
{
"object": "document_processor_run",
"id": "dpr_1234",
"edited": true,
"type": "EXTRACT",
"initialOutput": {
// Output object - see “Processor output types” for details
},
"reviewedOutput": {
// Output object - see “Processor output types” for details
},
"output": {
// Output object - see “Processor output types” for details
}
}
],
"stepRuns": [
{
"object": "workflow_step_run",
"id": "step_run_5UUwMs8baKLE5yFS8-0yK",
"status": "PROCESSED",
"output": {
"externalConfidence": 0.8,
"requiresHumanReview": true
},
"step": {
"object": "workflow_step",
"id": "step_abolADNNmLcOlTtuxDvle",
"name": "externalDataValidation1",
"type": "EXTERNAL_DATA_VALIDATION"
}
},
{
"object": "workflow_step_run",
"id": "step_run_OjueNCarlQNpkYfnFkD-A",
"status": "PROCESSED",
"output": {
"valid": false,
"rules": [
{
"name": "invoice_number_present",
"valid": true
},
{
"name": "line_item_amount",
"valid": true,
"validArray": [
true,
true
]
},
{
"name": "vendor_number_present",
"valid": false,
"failureReason": "RULE_FAILED"
}
]
},
"step": {
"object": "workflow_step",
"id": "step_Q1POO8orTTWgX7CmLLvJZ",
"name": "validation1",
"type": "RULE_VALIDATION"
}
}
],
"workflow": {
"object": "workflow",
"id": "workflow_1234",
"version": "1",
"name": "test_workflow"
}
}

