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.
Parameters
id: String
Returns
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
}