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

# Detach a Linear issue from a conversation

Removes the association between a Linear issue and the specified conversation. This does not delete the issue in Linear, only removes the link between the conversation and the issue. Also removes any Fernand-created attachments and customer links from the Linear issue. Returns an empty response on success.


## OpenAPI

````yaml https://api.getfernand.com/openapi.json delete /integrations/linear/{conversation_id}/tickets/{linear_id}
openapi: 3.0.3
info:
  title: Fernand API Documentation
  version: '3.0'
  description: This is the documentation for the [Fernand](https://getfernand.com) API.
  termsOfService: https://getfernand.com/terms
  contact:
    name: Fernand Support
    url: https://getfernand.com
    email: support@getfernand.com
  x-logo:
    url: https://app.getfernand.com/images/favicon/icon_128.png
servers:
  - url: https://api.getfernand.com
    description: ''
    x-last-modified: 1764750693905
security:
  - apiKeyHeader: []
externalDocs:
  description: You can access our documentation online by visiting https://api.fernand.help
  url: https://api.fernand.help
paths:
  /integrations/linear/{conversation_id}/tickets/{linear_id}:
    delete:
      tags:
        - Linear Integration
      summary: Detach a Linear issue from a conversation
      description: >-
        Removes the association between a Linear issue and the specified
        conversation. This does not delete the issue in Linear, only removes the
        link between the conversation and the issue. Also removes any
        Fernand-created attachments and customer links from the Linear issue.
        Returns an empty response on success.
      operationId: detachLinearTicket
      parameters:
        - name: conversation_id
          in: path
          required: true
          schema:
            type: integer
          description: ID of the conversation to detach the issue from.
          example: 12345
        - name: linear_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the Linear issue to detach.
          example: 8a7b93d1-18f7-4a9f-b5c6-3e2d1f9a8c7b
      responses:
        '200':
          description: Linear issue detached successfully.
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Linear integration or conversation not found.
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      description: >-
        Authenticate your account by including your secret key in API requests.

        You can manage your API keys in the
        [Dashboard](https://app.getfernand.com/).


        Authentication to the API is performed by using the HTTP Header
        X-API-Key.
      name: X-API-Key
      in: header
      x-last-modified: 1764750344730

````