Workflows
Get the workflow run history
Documentation
- Introduction
- Quickstart
- Workflow States
- Schemas and Templates
- Credits and Usage
- Crawling
- Adhoc Extractions
- Workspaces
- Chrome Extension
- Monitoring
- Integrations
- Advanced Workflows
- Security
- SDKs
API Reference
- Introduction
- Crawling
- Workflows
- Monitoring
- Advanced Workflows
- Templates
- Adhoc
- Events
- Webhooks
- Locations
Workflows
Get the workflow run history
GET
/
v4
/
workflows
/
{workflowId}
/
history
curl --request GET \
--url https://api.kadoa.com/v4/workflows/{workflowId}/history \
--header 'x-api-key: <api-key>'
{
"workflowId": "<string>",
"workflowRuns": [
{
"id": "<string>",
"state": "IN_PROGRESS",
"startedAt": "2023-11-07T05:31:56Z",
"finishedAt": "2023-11-07T05:31:56Z",
"screenshot": "<string>",
"records": 123,
"protocol": {
"decision": "<string>",
"reasoning": "<string>"
},
"credits": 123
}
]
}
Authorizations
Path Parameters
The unique identifier of the workflow whose runs history is to be retrieved
Response
200
application/json
History of workflow runs
Unique identifier of the workflow
Unique identifier of the workflow run
State of the workflow run
Available options:
IN_PROGRESS
, FINISHED
, FAILED
, NOT_SUPPORTED
, FAILED_INSUFFICIENT_FUNDS
Start date and time of the workflow run
Finish date and time of the workflow run
Screenshot of the navigation during the workflow run
Number of records processed in the workflow run
Number of credits used for this workflow run
curl --request GET \
--url https://api.kadoa.com/v4/workflows/{workflowId}/history \
--header 'x-api-key: <api-key>'
{
"workflowId": "<string>",
"workflowRuns": [
{
"id": "<string>",
"state": "IN_PROGRESS",
"startedAt": "2023-11-07T05:31:56Z",
"finishedAt": "2023-11-07T05:31:56Z",
"screenshot": "<string>",
"records": 123,
"protocol": {
"decision": "<string>",
"reasoning": "<string>"
},
"credits": 123
}
]
}