Push QnA To Suggestions
Create a question and set its status to draft.
Push QnA to Suggestions
POST
https://{{account_id}}.acquire.io/api/v1/bot/qna/push
Create a QnA and set its status to draft. If a similar question exists within the group, the added question will be merged to that QnA group.
Headers
Name
Type
Description
Authorization
string
Bearer {{api_key}}
Request Body
Name
Type
Description
qnaGroupId
integer
The ID of the group you'd like to add the question to.
question
string
A question you want to add to your Conversational Bot
{
"data": {
"message": "Question merged to existing similar question"
}
}
Body(raw)
{
"question": "Test Question",
"qnaGroupId": 1
}
Last updated