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

# Detach Tool From PAL

> Detach a tool from a PAL. The tool itself is not deleted - it remains available to attach to other PALs.



## OpenAPI

````yaml delete /v2/pals/{pal_id}/tools/{tool_id}
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
paths:
  /v2/pals/{pal_id}/tools/{tool_id}:
    parameters:
      - name: pal_id
        in: path
        required: true
        description: The unique identifier of the PAL.
        schema:
          type: string
          example: p12345
      - name: tool_id
        in: path
        required: true
        description: The unique identifier of the tool.
        schema:
          type: string
          example: tabc123def456
    delete:
      tags:
        - PAL Tools
      summary: Detach Tool From PAL
      description: >-
        Detach a tool from a PAL. The tool itself is not deleted - it remains
        available to attach to other PALs.
      operationId: detachToolFromPersona
      responses:
        '204':
          description: Tool detached
        '400':
          description: PAL not found, tool not found, or tool was not attached to this PAL
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Bad Request. Tool not attached to this PAL
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Invalid access token
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````