cURL
curl --request POST \ --url https://app.famulor.de/api/user/knowledgebases \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>" } '
{ "message": "Knowledgebase created successfully.", "data": { "id": 1, "name": "Produktdokumentation", "description": "Technische Dokumentation für unsere Produkte", "status": "empty", "status_label": "Leer", "created_at": "2025-01-08T10:30:00.000000Z", "updated_at": "2025-01-08T10:30:00.000000Z" } }
Erstellt eine neue Wissensdatenbank
Show Daten-Eigenschaften
empty
curl -X POST "https://app.famulor.de/api/user/knowledgebases" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Produktdokumentation", "description": "Technische Dokumentation für unsere Produkte" }'
Was this page helpful?