cURL
curl --request GET \ --url https://api.camelai.com/api/v1/knowledge-base/ \ --header 'Authorization: Bearer <token>'
{ "count": 123, "next": "http://api.example.org/accounts/?page=4", "previous": "http://api.example.org/accounts/?page=2", "results": [ { "id": 123, "content": "<string>", "connection_id": 123, "created_at": "2023-11-07T05:31:56Z", "last_modified": "2023-11-07T05:31:56Z" } ] }
Retrieve all knowledge base entries accessible to the current user.
JWT or API key authentication using Bearer scheme
A page number within the paginated result set.
Number of results to return per page.
The response is of type object.
object
Was this page helpful?