curl --request GET \
--url https://demo.enneo.ai/api/mind/knowledgeSourceStructure \
--header 'Authorization: Bearer <token>'[
{
"id": 1,
"name": "Fragen",
"type": "faq",
"description": "Allgemeine Fragen",
"parent": 0,
"children": [
{
"id": 2,
"name": "Allgemeine Fragen",
"parent": 1,
"children": [
{}
]
}
]
}
]JWT-based authentication
Successful operation
The unique identifier of the knowledge source structur
1
The name of the knowledge source structure
"Fragen"
The type of the knowledge source structure
"faq"
The description of the knowledge source structure
"Allgemeine Fragen"
The parent id of the knowledge source structure
0
Anzeigen untergeordnete attribute
curl --request GET \
--url https://demo.enneo.ai/api/mind/knowledgeSourceStructure \
--header 'Authorization: Bearer <token>'[
{
"id": 1,
"name": "Fragen",
"type": "faq",
"description": "Allgemeine Fragen",
"parent": 0,
"children": [
{
"id": 2,
"name": "Allgemeine Fragen",
"parent": 1,
"children": [
{}
]
}
]
}
]