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

NameTypeDescription

Authorization

string

Bearer {{api_key}}

Request Body

NameTypeDescription

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