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

# Delete Mid-call Action

> Permanently remove a Mid-call Action from your Famulor account via API. Detaches the action from any AI voice assistant currently configured to use it.

This endpoint allows you to permanently delete a Mid-call Action. This will also remove the action from all assistants it was assigned to.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication
</ParamField>

<ParamField header="Content-Type" type="string" required>
  Must be `application/json`
</ParamField>

<ParamField header="Accept" type="string" required>
  Must be `application/json`
</ParamField>

### Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the Mid-call Action to delete
</ParamField>

### Response Fields

<ResponseField name="message" type="string">
  Success message confirming deletion
</ResponseField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "message": "Tool deleted successfully"
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "message": "Tool not found"
  }
  ```
</ResponseExample>

### Note

When a Mid-call Action is deleted, it is automatically removed from all assistants. To manage assignments without deleting the action, use:

* **[Update Assistant](/en/api-reference/assistants/update)** — Use the `tool_ids` parameter to remove Mid-call Actions from specific assistants

<Tip>
  Need a whole toolset instead of building HTTP actions one by one? Connect an external **MCP server** — tools are discovered automatically. See [MCP Servers](/en/platform/mcp-servers).
</Tip>
