> ## 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 Relation

> Remove a relation.

## Overview

Removes a relation between two issues. Can be called from either side.

***

## 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="relation_id" type="string" required>
  Internal UUID of the relation.
</ParamField>

***

## Response

Returns `204 No Content` on success.

Returns 404 if the issue does not exist or the relation 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": "Relation not found" }
    ]
  }
  ```
</ResponseExample>

***

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