Skip to main content
DELETE
/
api
/
v1
/
logs
/
{logId}
Delete Log Entry
curl --request DELETE \
  --url {protocol}://{domain}/api/v1/logs/{logId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "success": true,
  "message": "<string>",
  "deleted": {
    "episode": true,
    "statements": 123,
    "entities": 123,
    "facts": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication supports:

  • Personal API tokens (PATs)
  • OAuth2 access tokens
  • JWT tokens

Example: Authorization: Bearer your_token_here

Path Parameters

logId
string
required

Log identifier

Body

application/json
id
string
required

Log ID to delete

Response

Log deleted successfully

success
boolean
message
string
deleted
object