PUT
/
api
/
v1
/
knowledge-engines
/
{id}
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"
  }
}'
{
  "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

id
string
required

Knowledge engine ID

Body

application/json
name
string
required

Name of the knowledge engine

Maximum length: 50
Example:

"Fintech Companies"

description
string

Short description of what the knowledge engine is comprised of

Example:

"Knowledge engine for processing and analyzing fintech companies"

notes
object

Custom attributes and fields

Example:
{
  "tags": "fintech, startups, venture capital"
}

Response

200
application/json
Knowledge engine updated successfully
id
string

Alphanumeric 14 character string identifier

Example:

"kng_abc123xyz789"

name
string

Name of the knowledge engine

Example:

"Fintech Companies"

description
string

Description of the knowledge engine

Example:

"Knowledge engine for processing and analyzing fintech companies"

notes
object

Custom attributes and fields

Example:
{ "category": "fintech" }
status
enum<string>

Current status of the knowledge engine

Available options:
processing,
ready
Example:

"ready"

created_at
integer

Unix timestamp when this entity was created

Example:

1679644800