curl --request PATCH \
--url http://localhost:3000/api/knowledge-bases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"status": "active"
}
'curl --request PATCH \
--url http://localhost:3000/api/knowledge-bases/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"status": "active"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Knowledge base ID
Knowledge base updated successfully