Skip to main content
PUT
/
v1
/
knowledgeBase
/
updateParagraph
/
{workspaceId}
/
{kbId}
Update Paragraphs
curl --request PUT \
  --url https://catalystapi.superdashhq.com/api/v1/knowledgeBase/updateParagraph/{workspaceId}/{kbId} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "data": "<string>",
  "key": "<string>"
}
'
{
    msg: "Paragraph updated successfully"
}

Authorizations

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

Path Parameters

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

Body Parameters

data
string
required
The Content of the paragraph
key
string
required
The Key of the paragraph

Response

{
    msg: "Paragraph updated successfully"
}