Skip to main content
DELETE
/
entities
/
deleteprompt
Delete Prompt(s)
curl --request DELETE \
  --url https://api.geogen.io/v1/entities/deleteprompt \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "promptId": "<string>"
}
'
{
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.geogen.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Format: Bearer wsk_your_api_key

Query Parameters

promptId
string

Single prompt ID to delete (mutually exclusive with promptIds).

promptIds
string

Comma-separated list of prompt IDs to delete (max 100).

Body

application/json
promptId
string

Response

Prompt(s) deleted successfully

success
boolean