> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolve Alert

> Mark an alert as resolved using the gu1 alerts API — close the case, update status, and trigger downstream workflow actions for compliance teams.

## Overview

Resolves an alert with optional resolution notes.

## Endpoint

```
POST http://api.gu1.ai/intelligence/alerts/{id}/resolve
```

## Path Parameters

<ParamField path="id" type="string" required>
  UUID of the alert to resolve
</ParamField>

## Request Body

<ParamField body="resolutionNotes" type="string">
  Optional notes explaining the resolution
</ParamField>

## Example Request

```bash theme={null}
curl -X POST http://api.gu1.ai/intelligence/alerts/alert-123/resolve \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"resolutionNotes": "False positive - verified legitimate transaction"}'
```

## Response

```json theme={null}
{
  "success": true,
  "alertId": "alert-123",
  "status": "RESOLVED",
  "message": "Alert resolved successfully"
}
```

## See Also

* [List Alerts](/en/api-reference/alerts/list)
* [Acknowledge Alert](/en/api-reference/alerts/acknowledge)
