Update questions and answers in FAQ template for a knowledge base
curl --request PUT \
--url https://api-prod.interactly.ai/kb/v1/knowledge-bases/{id}/faq-template \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"faq": [
{
"id": "6789abcdef01234567890abc",
"question": "What is the address of your clinic?",
"answer": "12345 Elm Street, Springfield, CA 12345, USA",
"category": "General Enquiry",
"updatable": true
}
]
}
'
{
"faq": [
{
"id": "6789abcdef01234567890abc",
"question": "What is the address of your clinic?",
"answer": "12345 Elm Street, Springfield, CA 12345, USA",
"category": "General Enquiry",
"updatable": true
}
]
}
Knowledge Bases
Update questions and answers in FAQ template for a knowledge base
Update a list of QnA entries in an FAQ by their unique ID
PUT
/
kb
/
v1
/
knowledge-bases
/
{id}
/
faq-template
Update questions and answers in FAQ template for a knowledge base
curl --request PUT \
--url https://api-prod.interactly.ai/kb/v1/knowledge-bases/{id}/faq-template \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"faq": [
{
"id": "6789abcdef01234567890abc",
"question": "What is the address of your clinic?",
"answer": "12345 Elm Street, Springfield, CA 12345, USA",
"category": "General Enquiry",
"updatable": true
}
]
}
'
{
"faq": [
{
"id": "6789abcdef01234567890abc",
"question": "What is the address of your clinic?",
"answer": "12345 Elm Street, Springfield, CA 12345, USA",
"category": "General Enquiry",
"updatable": true
}
]
}