Knowledge Base
Create Knowledge Base
curl -X POST
-H "Authorization: Bearer your_api_key_here"
-H "Content-Type: application/json"
-d '{"documentIds": ["abc123", "def456"]}'
https://api.pagepeek.com/v1/knowledge-base{
"kb_id": "kb123",
"documentIds": ["abc123", "def456"],
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z"
}Get Knowledge Base
curl -X GET \
-H "Authorization: Bearer your_api_key_here" \
https://api.pagepeek.com/v1/knowledge-base/kb123{
"kb_id": "kb123",
"documentIds": ["abc123", "def456"],
"createdAt": "2023-10-01T12:00:00Z",
"updatedAt": "2023-10-01T12:00:00Z"
}Update Knowledge Base
Last updated