POST
/
workflows
/
knowledge-base
/
get
Get workflow knowledge base
curl --request POST \
  --url https://api.kaizenautomation.com/workflows/knowledge-base/get \
  --header 'Content-Type: application/json' \
  --data '{
  "workflowId": "wf_123"
}'
{
  "text": "Company information and guidelines..."
}

Body

application/json
workflowId
string
required

The workflow ID to get knowledge base for

Example:

"wf_123"

Response

Knowledge base retrieved successfully

text
string
required

The knowledge base text content

Example:

"Company information and guidelines..."