continuing-cyan•2y ago
faq api edit
Hi guys! How can I edit this specific faq set? Or I can only delete it and make new one?
1 Reply
Based on the information available, it seems that Voiceflow's FAQ API currently supports the creation of an FAQ set and the deletion of a specific FAQ set. However, there doesn't appear to be a direct method to edit an existing FAQ set.
To modify an FAQ set, you might need to delete the specific FAQ set and then create a new one with the updated information.
For creating an FAQ set, you can use the endpoint
https://api.voiceflow.com/v3alpha/knowledge-base/faqs/
. This endpoint allows for the creation of an FAQ set within a project. Users can submit a list of Q&A pairs that form the FAQ set. Each FAQ set is identified by a unique FAQ set ID and is associated with the project.
For deleting a specific FAQ set, you can use the endpoint https://api.voiceflow.com/v3alpha/knowledge-base/faqs/{faqSetID}
. This endpoint allows for the deletion of a specific FAQ set using its unique ID. It is useful for removing outdated or irrelevant FAQ sets from a project.
Please note that these operations should be performed with caution to avoid any loss of data.
Sources:
- Create an FAQ Set
- Delete an FAQ Set