Skip to main content
POST
https://catalystapi.superdashhq.com/api
/
v1
/
knowledgeBase
/
addParagraph
/
{workspaceId}
/
{kbId}
Add Paragraphs
curl --request POST \
  --url https://catalystapi.superdashhq.com/api/v1/knowledgeBase/addParagraph/{workspaceId}/{kbId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "paragraphs": [
    {
      "value": {
        "data": "<string>"
      }
    }
  ]
}
'
{
 "msg": "Paragraph added successfully"
}

Authorizations

x-api-key
string
required
API key associated with the workspace.

Path Parameters

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

Body Parameters

paragraphs
array
required

Response

{
 "msg": "Paragraph added successfully"
}