curl --request GET \
--url https://demo.enneo.ai/api/mind/knowledgeSource
{
"name": "<string>",
"title": "<string>",
"answer": "<string>",
"items": [
{
"id": 123,
"type": "faq",
"status": "active",
"source": "https://company.com/faq/376189",
"name": "Opening hours",
"tags": [
70,
71
],
"teams": [
1,
2
],
"readByAgents": [
{
"id": 1,
"name": "John Doe",
"readAt": "2024-11-29 14:38:12"
}
],
"title": "Opening hours",
"text": "Our service hours are from 8am to 5pm. We are closed on weekends. [...]",
"confidential": false
}
]
}
Cookie-based authentication
The number of items to return
1 <= x <= 1000
The number of items to skip
x >= 0
The parent of the knowledgeSource to filter by
The search query to filter by. When specified other parameters are ignored
Successful operation
The response is of type object
.
curl --request GET \
--url https://demo.enneo.ai/api/mind/knowledgeSource
{
"name": "<string>",
"title": "<string>",
"answer": "<string>",
"items": [
{
"id": 123,
"type": "faq",
"status": "active",
"source": "https://company.com/faq/376189",
"name": "Opening hours",
"tags": [
70,
71
],
"teams": [
1,
2
],
"readByAgents": [
{
"id": 1,
"name": "John Doe",
"readAt": "2024-11-29 14:38:12"
}
],
"title": "Opening hours",
"text": "Our service hours are from 8am to 5pm. We are closed on weekends. [...]",
"confidential": false
}
]
}