---
title: "Resolve issues"
method: POST
path: "/v1/projects/{projectSlug}/issues/resolve"
tags: ["Issues"]
---

# Resolve issues

`POST /v1/projects/{projectSlug}/issues/resolve`

Marks each issue in `issueIds` as resolved. When `keepMonitoring` is `false`, monitoring is also stopped for each resolved issue; when omitted, the project's default applies.

## Path parameters

- `projectSlug` string, required — Project slug (human-readable identifier)

## Request body

- ResolveIssuesBody
  - `issueIds` string[], required — Non-empty list of issue ids. Operations are idempotent — already-applied issues are unchanged.
  - `keepMonitoring` boolean — When `true`, monitoring continues after the issues are resolved. When `false`, monitoring stops. Defaults to the project setting.

## Response `200`

Per-issue result

- IssuesLifecycleResponse
  - `items` IssueLifecycleItem[], required — Per-issue result, in the order requested.
    - `issueId` string, required — Issue this entry applies to.
    - `resolvedAt` string, nullable, required — ISO-8601 timestamp at which the issue was resolved, or `null`.
    - `ignoredAt` string, nullable, required — ISO-8601 timestamp at which the issue was ignored, or `null`.
    - `updatedAt` string, required — ISO-8601 timestamp of the last update.
    - `changed` boolean, required — `true` when this call changed the issue, `false` when it was already in that state.

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.dev/latitude-dev/apis/latitude.md) · [All operations](https://skmtc.dev/latitude-dev/apis/latitude/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/latitude-dev/latitude/revisions/fc0da553a950/schema)
