Skip to content
Get started

Delete an assistant

assistants.delete(id) -> AssistantDeleteResponse { success }
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.

ParametersExpand Collapse
id: String
ReturnsExpand Collapse
class AssistantDeleteResponse { success }
success: bool

Delete an assistant

require "revox"

revox = Revox::Client.new(api_key: "My API Key")

assistant = revox.assistants.delete("id")

puts(assistant)
{
  "success": true
}
Returns Examples
{
  "success": true
}