incidents
Get Incident Workflows
Overview
- Introduction
- Playground
- Use Cases
- Key Concepts
- Support
Workflow Automation
- Overview
- Syntax
- Examples
Alert Evaluation Engine
- Overview
- Examples
Providers
- Overview
- Adding a New Provider
- Provider methods
- Supported Providers
Deployment
- Configuration
- Monitoring
- Authentication
- Provision
- Secret Store
- Deploy On
- Local LLM
- Specifications
Development
Keep API
- providers
- actions
- healthcheck
- topology
- alerts
- deduplications
- maintenance
- incidents
- POSTChange Incident Status
- POSTCreate Incident
- GETGet All Incidents
- GETGet Incident
- PUTUpdate Incident
- DELDelete Incident
- POSTConfirm Incident
- GETGet Incident Alerts
- POSTAdd Alerts To Incident
- DELDelete Alerts From Incident
- POSTConfirm Incident
- POSTAdd Comment
- GETGet Future Incidents For An Incident
- GETGet Incident Workflows
- GETGet Incidents Meta
- POSTMerge Incidents
- POSTCommit With Ai
- POSTCreate Incident
- POSTCreate With Ai
- POSTReceive Event
- POST
- settings
- workflows
- whoami
- pusher
- status
- rules
- preset
- enrichment
- auth
- metrics
- users
- groups
- mappings
- dashboard
- tags
Keep CLI
incidents
Get Incident Workflows
Get incident workflows by incident id
GET
/
incidents
/
{incident_id}
/
workflows
{
"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
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
}