---
title: "ktm incidents close"
description: "Learn how to use the ktm incidents close command to manually close an active incident by ID for a specified operator via the CLI."
sidebarTitle: "close"
lastUpdated: "2026-09-23"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

{/* GENERATED FILE: do not edit by hand. Regenerate with: node scripts/generate.mjs */}

Close an active incident (sets status to MANUALLY_CLOSED)

## Usage

```bash
ktm incidents close [flags]
```

## Examples

```bash
# Close an active incident
ktm incidents close --operator my-operator --id 99
```

## Flags

| Flag | Type | Default | Description |
| --- | --- | --- | --- |
| `--id` | int |  | Incident ID to close (from 'incidents list') |
| `--operator` | string |  | Operator slug (required) |

## Details

Close an incident by ID. The incident status changes to MANUALLY_CLOSED.

Use 'incidents list --status OPEN' to find active incidents.

## Related

- [`ktm incidents`](/cli/commands/incidents)

<Note>
  Global flags (`--output`, `--debug`, `--host`, …) apply to every command. See the [command reference overview](/cli/commands/overview).
</Note>

## What's next?

<Columns cols={2}>
  <Card title="All commands" icon="terminal" href="/cli/commands/overview">
    Browse the full CLI reference.
  </Card>
  <Card title="Get started" icon="rocket" href="/cli/getting-started">
    Install the CLI and authenticate.
  </Card>
</Columns>
