## Delete `assistants.delete(id) -> AssistantDeleteResponse` **delete** `/assistants/{id}` Permanently delete an assistant by its ID. Any future calls referencing this assistant ID will fail. Existing call records that used this assistant are not affected. ### Parameters - `id: String` ### Returns - `class AssistantDeleteResponse` - `success: bool` ### Example ```ruby require "revox" revox = Revox::Client.new(api_key: "My API Key") assistant = revox.assistants.delete("id") puts(assistant) ```