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

url = "https://api.eigi.ai/v1/public/prompts/{prompt_name}"

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/prompts/{prompt_name}', 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/prompts/{prompt_name}",
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/prompts/{prompt_name}"

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/prompts/{prompt_name}")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

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

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>",
  "prompt_name": "<string>",
  "versions_deleted": 123,
  "deleted_at": "2023-11-07T05:31:56Z"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}
{
"detail": "<string>"
}

Overview

Permanently delete all versions of a prompt. This action cannot be undone.
You cannot delete a prompt that is currently used by any agent. Unassign the prompt from all agents before deleting it.

Authentication

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

Path Parameters

prompt_name
string
required
The unique name of the prompt to delete.Example: customer_support_v1

Response

message
string
Success confirmation message.
prompt_name
string
Name of the deleted prompt.
versions_deleted
integer
Number of versions that were deleted.
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

prompt_name
string
required

The unique prompt name

Response

Prompt deleted successfully

message
string

Success message

prompt_name
string

Name of the deleted prompt

versions_deleted
integer

Number of versions deleted

deleted_at
string<date-time>

Deletion timestamp