Skip to main content
DELETE
/
v1
/
public
/
agents
/
{agent_id}
Delete Agent
curl --request DELETE \
  --url https://api.eigi.ai/v1/public/agents/{agent_id} \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.eigi.ai/v1/public/agents/{agent_id}"

headers = {"X-API-Key": "<api-key>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};

fetch('https://api.eigi.ai/v1/public/agents/{agent_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eigi.ai/v1/public/agents/{agent_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.eigi.ai/v1/public/agents/{agent_id}"

req, _ := http.NewRequest("DELETE", url, nil)

req.Header.Add("X-API-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.delete("https://api.eigi.ai/v1/public/agents/{agent_id}")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.eigi.ai/v1/public/agents/{agent_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Delete.new(url)
request["X-API-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "message": "<string>",
  "agent_id": "<string>",
  "agent_name": "<string>",
  "deleted_at": "2023-11-07T05:31:56Z"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}

Overview

Permanently delete an agent. This also deletes the agent’s internal prompt (if one was auto-created via prompt_content).
This action cannot be undone. The agent and all its configuration will be permanently removed.

Authentication

X-API-Key
string
required
Your eigi.ai API key. Must be prefixed with vk_.

Path Parameters

agent_id
string
required
The unique agent ID to delete.Example: 68ea2517dbb84c09bae1ba0a

Response

message
string
Success confirmation message.
agent_id
string
ID of the deleted agent.
agent_name
string
Name of the deleted agent.
deleted_at
string
ISO 8601 timestamp of when the deletion occurred.

Authorizations

X-API-Key
string
header
required

API key for authentication. Get your API key from the eigi.ai Dashboard under Settings → API Keys.

Path Parameters

agent_id
string
required

The unique agent ID

Response

Agent deleted successfully

message
string

Success message

agent_id
string

ID of the deleted agent

agent_name
string

Name of the deleted agent

deleted_at
string<date-time>

Deletion timestamp