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

# Remove Flag

> Remove a flag from an issue.

## Overview

Deletes a flag. The underlying call is unaffected. The flag's `type` stays in the [Flag Types](/api-v1/get/triage-flag-types) catalog if other flags of the same type still exist.

***

## Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

***

## Path Parameters

<ParamField path="id" type="string" required>
  Internal UUID of the issue.
</ParamField>

<ParamField path="flag_id" type="string" required>
  Internal UUID of the flag to remove.
</ParamField>

***

## Response

Returns `204 No Content` on success.

Returns 404 if the issue does not exist or the flag does not belong to this issue.

<ResponseExample>
  ```http No Content theme={null}
  HTTP/1.1 204 No Content
  ```

  ```json Not Found theme={null}
  {
    "data": null,
    "errors": [
      { "error": "not_found", "message": "Flag not found" }
    ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
