Knowledge Engines
Data Sources
Workflows
Tool Runs
Knowledge Engines
Update Knowledge Engine
Updates an existing knowledge engine
PUT
/
api
/
v1
/
knowledge-engines
/
{id}
Copy
curl --request PUT \
--url https://api.getdecisional.ai/api/v1/knowledge-engines/{id} \
--header 'Content-Type: application/json' \
--data '{
"name": "Fintech Companies",
"description": "Knowledge engine for processing and analyzing fintech companies",
"notes": {
"tags": "fintech, startups, venture capital"
}
}'
Copy
{
"id": "kng_abc123xyz789",
"name": "Fintech Companies",
"description": "Knowledge engine for processing and analyzing fintech companies",
"notes": {
"category": "fintech"
},
"status": "ready",
"created_at": 1679644800
}
Path Parameters
Knowledge engine ID
Body
application/json
Response
200
application/json
Knowledge engine updated successfully
The response is of type object
.
Copy
curl --request PUT \
--url https://api.getdecisional.ai/api/v1/knowledge-engines/{id} \
--header 'Content-Type: application/json' \
--data '{
"name": "Fintech Companies",
"description": "Knowledge engine for processing and analyzing fintech companies",
"notes": {
"tags": "fintech, startups, venture capital"
}
}'
Copy
{
"id": "kng_abc123xyz789",
"name": "Fintech Companies",
"description": "Knowledge engine for processing and analyzing fintech companies",
"notes": {
"category": "fintech"
},
"status": "ready",
"created_at": 1679644800
}
Assistant
Responses are generated using AI and may contain mistakes.