List knowledge base documents

Retrieve a list of knowledge base documents for the customer

Required scope: convai:read

Responses
  • application/json
  • application/json
  • application/json
Request Example for get/knowledge-base
curl https://api.simwood.com/convai/v1/knowledge-base \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "documents": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "string",
      "type": "url",
      "size_bytes": 1,
      "source_url": null,
      "created_at": "2026-07-18T10:26:52.935Z",
      "updated_at": "2026-07-18T10:26:52.935Z"
    }
  ]
}