workflows
Get Workflow By Id
Overview
- Introduction
- Playground
- Use Cases
- Key Concepts
- Support
AIOps
- AI
- Non-AI Correlation
- Deduplication
- Extraction
- Mapping
- Maintenance Windows
- Service Topology
- Workflows
Workflow Automation
- Overview
- Syntax
- Examples
Alert Evaluation Engine
- Overview
- Examples
Providers
- Overview
- Linked Providers
- Provider methods
- Supported Providers
- Adding a New Provider
Deployment
- Configuration
- Monitoring
- Authentication
- Provision
- Secret Store
- Deploy On
- Local LLM
- Specifications
Development
Keep API
- providers
- actions
- healthcheck
- topology
- alerts
- deduplications
- maintenance
- incidents
- settings
- workflows
- GETGet Workflows
- POSTCreate Workflow
- GETExport Workflows
- POSTRun Workflow
- POSTRun Workflow From Definition
- POSTCreate Workflow From Body
- GETGet Random Workflow Templates
- GETGet Workflow By Id
- GETGet Workflow By Id
- PUTUpdate Workflow By Id
- DELDelete Workflow By Id
- GETGet Raw Workflow By Id
- GETGet Workflow Executions By Alert Fingerprint
- GETGet Workflow Execution Status
- GETGet workflow executions
- GET
- whoami
- pusher
- status
- rules
- preset
- enrichment
- auth
- metrics
- users
- groups
- mappings
- dashboard
- tags
Keep CLI
workflows
Get Workflow By Id
Get workflow executions by ID
GET
/
workflows
/
{workflow_id}
/
runs
{
"limit": 25,
"offset": 0,
"count": 123,
"items": [
{
"id": "<string>",
"workflow_id": "<string>",
"started": "2023-11-07T05:31:56Z",
"triggered_by": "<string>",
"status": "<string>",
"workflow_name": "<string>",
"logs": [
{
"id": 123,
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"context": {}
}
],
"error": "<string>",
"execution_time": 123,
"results": {}
}
],
"passCount": 0,
"avgDuration": 0,
"workflow": {
"id": "<string>",
"name": "Workflow file doesn't contain name",
"description": "Workflow file doesn't contain description",
"created_by": "<string>",
"creation_time": "2023-11-07T05:31:56Z",
"triggers": [
{}
],
"interval": 123,
"disabled": false,
"last_execution_time": "2023-11-07T05:31:56Z",
"last_execution_status": "<string>",
"providers": [
{
"type": "<string>",
"id": "<string>",
"name": "<string>",
"installed": true
}
],
"workflow_raw": "<string>",
"revision": 1,
"last_updated": "2023-11-07T05:31:56Z",
"invalid": false,
"last_executions": [
{}
],
"last_execution_started": "2023-11-07T05:31:56Z",
"provisioned": false,
"provisioned_file": "<string>"
},
"failCount": 0
}
Authorizations
Path Parameters
Query Parameters
Response
200
application/json
Successful Response
{
"limit": 25,
"offset": 0,
"count": 123,
"items": [
{
"id": "<string>",
"workflow_id": "<string>",
"started": "2023-11-07T05:31:56Z",
"triggered_by": "<string>",
"status": "<string>",
"workflow_name": "<string>",
"logs": [
{
"id": 123,
"timestamp": "2023-11-07T05:31:56Z",
"message": "<string>",
"context": {}
}
],
"error": "<string>",
"execution_time": 123,
"results": {}
}
],
"passCount": 0,
"avgDuration": 0,
"workflow": {
"id": "<string>",
"name": "Workflow file doesn't contain name",
"description": "Workflow file doesn't contain description",
"created_by": "<string>",
"creation_time": "2023-11-07T05:31:56Z",
"triggers": [
{}
],
"interval": 123,
"disabled": false,
"last_execution_time": "2023-11-07T05:31:56Z",
"last_execution_status": "<string>",
"providers": [
{
"type": "<string>",
"id": "<string>",
"name": "<string>",
"installed": true
}
],
"workflow_raw": "<string>",
"revision": 1,
"last_updated": "2023-11-07T05:31:56Z",
"invalid": false,
"last_executions": [
{}
],
"last_execution_started": "2023-11-07T05:31:56Z",
"provisioned": false,
"provisioned_file": "<string>"
},
"failCount": 0
}