Skip to main content
GET
https://catalystapi.superdashhq.com/api
/
v1
/
knowledgeBase
/
getKnowledgeBase
/
{workspaceId}
/
{kbId}
Get Knowledge Base
curl --request GET \
  --url https://catalystapi.superdashhq.com/api/v1/knowledgeBase/getKnowledgeBase/{workspaceId}/{kbId} \
  --header 'x-api-key: <x-api-key>'
{
    "knowledgeBase": {
        "label": "The Name of the knowledge base",
        "paragraphs": [
            {
                "value": {
                    "data": "The content of the paragraph",
                },
                "key": "The paragraph key"
            }
        ],
    }
}

Authorizations

x-api-key
string
required
API key associated with your workspace

Path Parameters

workspaceId
string
required
UUID of the workspace
kbId
string
required
UUID of the knowledge base.

Response

knowledgeBase
object
{
    "knowledgeBase": {
        "label": "The Name of the knowledge base",
        "paragraphs": [
            {
                "value": {
                    "data": "The content of the paragraph",
                },
                "key": "The paragraph key"
            }
        ],
    }
}