@@ -51,6 +51,8 @@ List incidents from incident.io. Returns a list of incidents with their details
5151| ` apiKey ` | string | Yes | incident.io API Key |
5252| ` page_size ` | number | No | Number of incidents to return per page \( e.g., 10, 25, 50\) . Default: 25 |
5353| ` after ` | string | No | Pagination cursor to fetch the next page of results \( e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
54+ | ` sort_by ` | string | No | Sort order for incidents: created_at_newest_first or created_at_oldest_first |
55+ | ` filter_mode ` | string | No | How to combine filters: all or any |
5456
5557#### Output
5658
@@ -234,6 +236,7 @@ List actions from incident.io. Optionally filter by incident ID.
234236| --------- | ---- | -------- | ----------- |
235237| ` apiKey ` | string | Yes | incident.io API Key |
236238| ` incident_id ` | string | No | Filter actions by incident ID \( e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
239+ | ` incident_mode ` | string | No | Filter actions by incident mode \( standard, retrospective, test, tutorial, or stream\) |
237240
238241#### Output
239242
@@ -308,6 +311,7 @@ List follow-ups from incident.io. Optionally filter by incident ID.
308311| --------- | ---- | -------- | ----------- |
309312| ` apiKey ` | string | Yes | incident.io API Key |
310313| ` incident_id ` | string | No | Filter follow-ups by incident ID \( e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
314+ | ` incident_mode ` | string | No | Filter follow-ups by incident mode \( standard, retrospective, test, tutorial, or stream\) |
311315
312316#### Output
313317
@@ -395,6 +399,8 @@ List all users in your Incident.io workspace. Returns user details including id,
395399| ` apiKey ` | string | Yes | Incident.io API Key |
396400| ` page_size ` | number | No | Number of results to return per page \( e.g., 10, 25, 50\) . Default: 25 |
397401| ` after ` | string | No | Pagination cursor to fetch the next page of results |
402+ | ` email ` | string | No | Filter users by email address |
403+ | ` slack_user_id ` | string | No | Filter users by Slack user ID |
398404
399405#### Output
400406
@@ -446,12 +452,24 @@ List all workflows in your incident.io workspace.
446452| Parameter | Type | Description |
447453| --------- | ---- | ----------- |
448454| ` workflows ` | array | List of workflows |
449- | ↳ ` id ` | string | Unique identifier for the workflow |
450- | ↳ ` name ` | string | Name of the workflow |
451- | ↳ ` state ` | string | State of the workflow \( active, draft, or disabled\) |
452- | ↳ ` folder ` | string | Folder the workflow belongs to |
453- | ↳ ` created_at ` | string | When the workflow was created |
454- | ↳ ` updated_at ` | string | When the workflow was last updated |
455+ | ↳ ` id ` | string | Workflow ID |
456+ | ↳ ` name ` | string | Workflow name |
457+ | ↳ ` trigger ` | string | Workflow trigger |
458+ | ↳ ` once_for ` | array | Fields that make the workflow run once |
459+ | ↳ ` version ` | number | Workflow version |
460+ | ↳ ` expressions ` | array | Workflow expressions |
461+ | ↳ ` condition_groups ` | array | Workflow condition groups |
462+ | ↳ ` steps ` | array | Workflow steps |
463+ | ↳ ` include_private_incidents ` | boolean | Whether the workflow includes private incidents |
464+ | ↳ ` include_private_escalations ` | boolean | Whether the workflow includes private escalations |
465+ | ↳ ` runs_on_incident_modes ` | array | Incident modes the workflow runs on |
466+ | ↳ ` continue_on_step_error ` | boolean | Whether execution continues after a step error |
467+ | ↳ ` runs_on_incidents ` | string | Incident lifecycle filter |
468+ | ↳ ` state ` | string | Workflow state \( active, draft, disabled\) |
469+ | ↳ ` delay ` | object | Workflow delay configuration |
470+ | ↳ ` folder ` | string | Workflow folder |
471+ | ↳ ` runs_from ` | string | When the workflow runs from |
472+ | ↳ ` shortform ` | string | Workflow shortform identifier |
455473
456474### ` incidentio_workflows_create `
457475
@@ -481,12 +499,24 @@ Create a new workflow in incident.io.
481499| Parameter | Type | Description |
482500| --------- | ---- | ----------- |
483501| ` workflow ` | object | The created workflow |
484- | ↳ ` id ` | string | Unique identifier for the workflow |
485- | ↳ ` name ` | string | Name of the workflow |
486- | ↳ ` state ` | string | State of the workflow \( active, draft, or disabled\) |
487- | ↳ ` folder ` | string | Folder the workflow belongs to |
488- | ↳ ` created_at ` | string | When the workflow was created |
489- | ↳ ` updated_at ` | string | When the workflow was last updated |
502+ | ↳ ` id ` | string | Workflow ID |
503+ | ↳ ` name ` | string | Workflow name |
504+ | ↳ ` trigger ` | string | Workflow trigger |
505+ | ↳ ` once_for ` | array | Fields that make the workflow run once |
506+ | ↳ ` version ` | number | Workflow version |
507+ | ↳ ` expressions ` | array | Workflow expressions |
508+ | ↳ ` condition_groups ` | array | Workflow condition groups |
509+ | ↳ ` steps ` | array | Workflow steps |
510+ | ↳ ` include_private_incidents ` | boolean | Whether the workflow includes private incidents |
511+ | ↳ ` include_private_escalations ` | boolean | Whether the workflow includes private escalations |
512+ | ↳ ` runs_on_incident_modes ` | array | Incident modes the workflow runs on |
513+ | ↳ ` continue_on_step_error ` | boolean | Whether execution continues after a step error |
514+ | ↳ ` runs_on_incidents ` | string | Incident lifecycle filter |
515+ | ↳ ` state ` | string | Workflow state \( active, draft, disabled\) |
516+ | ↳ ` delay ` | object | Workflow delay configuration |
517+ | ↳ ` folder ` | string | Workflow folder |
518+ | ↳ ` runs_from ` | string | When the workflow runs from |
519+ | ↳ ` shortform ` | string | Workflow shortform identifier |
490520| ` management_meta ` | json | Workflow management metadata |
491521
492522### ` incidentio_workflows_show `
@@ -499,18 +529,31 @@ Get details of a specific workflow in incident.io.
499529| --------- | ---- | -------- | ----------- |
500530| ` apiKey ` | string | Yes | incident.io API Key |
501531| ` id ` | string | Yes | The ID of the workflow to retrieve \( e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
532+ | ` skip_step_upgrades ` | boolean | No | Skip workflow step upgrades when existing workflow step parameters changed |
502533
503534#### Output
504535
505536| Parameter | Type | Description |
506537| --------- | ---- | ----------- |
507538| ` workflow ` | object | The workflow details |
508- | ↳ ` id ` | string | Unique identifier for the workflow |
509- | ↳ ` name ` | string | Name of the workflow |
510- | ↳ ` state ` | string | State of the workflow \( active, draft, or disabled\) |
511- | ↳ ` folder ` | string | Folder the workflow belongs to |
512- | ↳ ` created_at ` | string | When the workflow was created |
513- | ↳ ` updated_at ` | string | When the workflow was last updated |
539+ | ↳ ` id ` | string | Workflow ID |
540+ | ↳ ` name ` | string | Workflow name |
541+ | ↳ ` trigger ` | string | Workflow trigger |
542+ | ↳ ` once_for ` | array | Fields that make the workflow run once |
543+ | ↳ ` version ` | number | Workflow version |
544+ | ↳ ` expressions ` | array | Workflow expressions |
545+ | ↳ ` condition_groups ` | array | Workflow condition groups |
546+ | ↳ ` steps ` | array | Workflow steps |
547+ | ↳ ` include_private_incidents ` | boolean | Whether the workflow includes private incidents |
548+ | ↳ ` include_private_escalations ` | boolean | Whether the workflow includes private escalations |
549+ | ↳ ` runs_on_incident_modes ` | array | Incident modes the workflow runs on |
550+ | ↳ ` continue_on_step_error ` | boolean | Whether execution continues after a step error |
551+ | ↳ ` runs_on_incidents ` | string | Incident lifecycle filter |
552+ | ↳ ` state ` | string | Workflow state \( active, draft, disabled\) |
553+ | ↳ ` delay ` | object | Workflow delay configuration |
554+ | ↳ ` folder ` | string | Workflow folder |
555+ | ↳ ` runs_from ` | string | When the workflow runs from |
556+ | ↳ ` shortform ` | string | Workflow shortform identifier |
514557| ` management_meta ` | json | Workflow management metadata |
515558
516559### ` incidentio_workflows_update `
@@ -541,12 +584,24 @@ Update an existing workflow in incident.io.
541584| Parameter | Type | Description |
542585| --------- | ---- | ----------- |
543586| ` workflow ` | object | The updated workflow |
544- | ↳ ` id ` | string | Unique identifier for the workflow |
545- | ↳ ` name ` | string | Name of the workflow |
546- | ↳ ` state ` | string | State of the workflow \( active, draft, or disabled\) |
547- | ↳ ` folder ` | string | Folder the workflow belongs to |
548- | ↳ ` created_at ` | string | When the workflow was created |
549- | ↳ ` updated_at ` | string | When the workflow was last updated |
587+ | ↳ ` id ` | string | Workflow ID |
588+ | ↳ ` name ` | string | Workflow name |
589+ | ↳ ` trigger ` | string | Workflow trigger |
590+ | ↳ ` once_for ` | array | Fields that make the workflow run once |
591+ | ↳ ` version ` | number | Workflow version |
592+ | ↳ ` expressions ` | array | Workflow expressions |
593+ | ↳ ` condition_groups ` | array | Workflow condition groups |
594+ | ↳ ` steps ` | array | Workflow steps |
595+ | ↳ ` include_private_incidents ` | boolean | Whether the workflow includes private incidents |
596+ | ↳ ` include_private_escalations ` | boolean | Whether the workflow includes private escalations |
597+ | ↳ ` runs_on_incident_modes ` | array | Incident modes the workflow runs on |
598+ | ↳ ` continue_on_step_error ` | boolean | Whether execution continues after a step error |
599+ | ↳ ` runs_on_incidents ` | string | Incident lifecycle filter |
600+ | ↳ ` state ` | string | Workflow state \( active, draft, disabled\) |
601+ | ↳ ` delay ` | object | Workflow delay configuration |
602+ | ↳ ` folder ` | string | Workflow folder |
603+ | ↳ ` runs_from ` | string | When the workflow runs from |
604+ | ↳ ` shortform ` | string | Workflow shortform identifier |
550605| ` management_meta ` | json | Workflow management metadata |
551606
552607### ` incidentio_workflows_delete `
0 commit comments