curl --request GET \
--url https://api.tryarchitect.com/v0/topics/search \
--header 'x-api-key: <api-key>'{
"hasMore": true,
"items": [
{
"topicId": "<string>",
"title": "<string>",
"purpose": "<string>",
"sortOrder": 123,
"isDefault": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"entries": [
{
"topicEntryId": "<string>",
"topicId": "<string>",
"sortOrder": 123,
"content": {
"type": "<string>",
"content": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
],
"nextCursor": "<string>",
"totalCount": 4503599627370495
}Search knowledge topics by title or entry content.
curl --request GET \
--url https://api.tryarchitect.com/v0/topics/search \
--header 'x-api-key: <api-key>'{
"hasMore": true,
"items": [
{
"topicId": "<string>",
"title": "<string>",
"purpose": "<string>",
"sortOrder": 123,
"isDefault": true,
"createdAt": "<string>",
"updatedAt": "<string>",
"entries": [
{
"topicEntryId": "<string>",
"topicId": "<string>",
"sortOrder": 123,
"content": {
"type": "<string>",
"content": "<string>"
},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}
],
"nextCursor": "<string>",
"totalCount": 4503599627370495
}API key authentication for the External Actor Gateway
Was this page helpful?