Update an existing knowledge base FAQ
PUT/knowledge-bases/faqs/:id
Updates the question and/or answer of an existing FAQ. WHEN TO USE: use this when you need to change wording on a FAQ you already have; use create to add a new FAQ; use delete to remove one. RETURNS: whether the update succeeded.
Request
Version stringrequired
API Version
Available options
v3id stringrequired
faq ID as string
- application/json
- Body
- Example (auto)
Bodyrequired
questionstringrequired
faq question as a string
answerstringrequired
faq answer as a string
{
"question": "What is the capital of France?",
"answer": "The capital of France is Paris."
}
FAQ updated successfully
- application/json
- Schema
- Example (auto)
Schema
successbooleanrequired
Success status of the update operation
{
"success": true
}