Workflow-run
Task
Document
- GETDocument metadata
- GETFull document details
- GETDocument CSV content
- POSTUnzip file and return PDFs
- POSTGenerate CSV document
- POSTPresigned URL for upload
- POSTClassify document (async)
- POSTSplit document (async)
- POSTCreate documents from splits
- POSTLegacy extract document (async)
- POSTDocument extraction (async)
- POSTRender document body
- POSTGenerate document from template (async)
- POSTTransform JSON to HTML
- POSTDocument reasoning (async)
- POSTSearch across documents
Async-result
Communication
Clearinghouse
Ledger
Integration - Snowflake
Workflow-run
Workflow run details
Retrieves the complete details of a specific workflow run by its ID.
GET
/
api
/
v2
/
workflow-runs
/
{workflowRunId}
Copy
import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
workflow_run = client.v2.workflow_runs.retrieve(
"workflowRunId",
)
print(workflow_run.workflow_run)
Copy
{
"workflowRun": "<any>"
}
Path Parameters
The unique identifier of the workflow run.
Response
200
application/json
Successfully retrieved workflow run details.
Copy
import os
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key=os.environ.get("SAMPLEHC_API_KEY"), # This is the default and can be omitted
)
workflow_run = client.v2.workflow_runs.retrieve(
"workflowRunId",
)
print(workflow_run.workflow_run)
Copy
{
"workflowRun": "<any>"
}
Assistant
Responses are generated using AI and may contain mistakes.