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

# Mark Alert Actioned

Use this API to mark an alert as actioned, recording that your team followed up on it.

# Endpoint

`POST https://api.velt.dev/v2/memory/alerts/action`

# Headers

<ParamField header="x-velt-api-key" type="string" required>
  Your API key.
</ParamField>

<ParamField header="x-velt-auth-token" type="string" required>
  Your [Auth Token](/security/auth-tokens).
</ParamField>

# Body

#### Params

<ParamField body="data" type="object" required>
  <Expandable title="properties">
    <ParamField body="alertId" type="string" required>
      The alert to act on.
    </ParamField>
  </Expandable>
</ParamField>

## **Example Requests**

#### Mark an alert actioned

```JSON theme={null}
{
  "data": {
    "alertId": "alert_1"
  }
}
```

# Response

The response confirms the update.

#### Success Response

```JSON theme={null}
{
  "result": {
    "success": true
  }
}
```

#### Failure Response

```JSON theme={null}
{
  "error": {
    "message": "ERROR_MESSAGE",
    "status": "INVALID_ARGUMENT"
  }
}
```

<ResponseExample>
  ```js theme={null}
  {
    "result": {
      "success": true
    }
  }
  ```
</ResponseExample>
