POST
/
workflows
/
knowledge-base
/
update
Update workflow knowledge base
curl --request POST \
  --url https://api.kaizenautomation.com/workflows/knowledge-base/update \
  --header 'Content-Type: application/json' \
  --data '{
  "workflowId": "wf_123",
  "text": "Updated company information..."
}'
{
  "message": "Knowledge base updated successfully"
}

Body

application/json
workflowId
string
required

The workflow ID to update knowledge base for

Example:

"wf_123"

text
string
required

The knowledge base text content to save

Example:

"Updated company information..."

Response

Knowledge base updated successfully

message
string
required

Success message

Example:

"Knowledge base updated successfully"