Returns all knowledge base articles belonging to your organization, ordered by most recently created first. Method:Documentation Index
Fetch the complete documentation index at: https://docs.pingback.live/llms.txt
Use this file to discover all available pages before exploring further.
GET URL: /api/v1/kb/articles
Headers
| Header | Value |
|---|---|
| Authorization | Bearer |
Response
Unique integer ID of the article.
ID of the business that owns this article.
Title of the knowledge base article.
Full text content of the article.
Array of tag strings associated with the article.
ISO 8601 timestamp of when the article was created.
Example
Response example
Delete an article
Method:DELETE URL: /api/v1/kb/articles/{article_id}
Permanently removes a knowledge base article from your organization. The article is also deleted from the semantic search index, so it will no longer be referenced by Theo AI in conversations.
Path parameters
The integer ID of the article to delete.
Example
Response example
Errors
| Status | Meaning |
|---|---|
| 401 | Unauthorized — missing or invalid token |
| 404 | Article not found |