Enneo

Wiki knowledge source

Get knowledgeSource by id

GET /knowledgeSource/{id}

GET /knowledgeSource/{id}

Returns a single knowledge source. Excluded website pages (whose source URL matches the parent connector's sourceConfig.excludePaths) return 404 Not Found — this matches the bulk list filter so Cortex sync stays consistent.

Path parameters

idintegerpathrequired

The id of the knowledgeSource to retrieve

Responses

200 — Successful operation

Response Example

{
  "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,
  "excluded": false,
  "access": {
    "blocked": true,
    "blockedItems": [
      {
        "id": 42,
        "kind": "article"
      },
      {
        "id": 57,
        "kind": "folder"
      }
    ]
  }
}

404 — Not found, or the page is an excluded website page

500 — Internal error