Zum Hauptinhalt springen
POST
/
ticket
/
textUpdate
Apply an AI-driven text transformation
curl --request POST \
  --url https://demo.enneo.ai/api/mind/ticket/textUpdate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "text": "<string>",
  "operation": "<string>",
  "parameters": {}
}
'
{
  "success": true,
  "text": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.enneo.ai/llms.txt

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

Autorisierungen

Authorization
string
header
erforderlich

JWT-based authentication

Body

application/json
text
string

Source text to transform.

operation
string

Transformation operation (e.g. rephrase, shorten, translate).

parameters
object

Operation-specific parameters (e.g. target language for translate).

Antwort

Successful operation

success
boolean
Beispiel:

true

text
string

Transformed text.