Skip to main content
DELETE
/
api
/
annotations
/
{id}
Python
import requests

url = "https://app.langwatch.ai/api/annotations/{id}"

headers = {"X-Auth-Token": "<api-key>"}

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

print(response.json())
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

X-Auth-Token
string
header
required

Path Parameters

id
string
required

ID of annotation to delete

Response

Annotation response

status
string
message
string
⌘I