Get
Retrieve a single QnA
Get
GET
https://{{account_id}}.acquire.io/api/v1/bot/qna/detail/{{id}}
Retrieve a single QnA. The QnA id must be passed in to the endpoint as a path parameter.
Path Parameters
Name
Type
Description
id
integer
Specify ID for the QnA to get the details
Headers
Name
Type
Description
Authorization
string
Bearer {{api_key}}
{
"data": {
"id": 1,
"type": "live",
"subtype": "pre_defined",
"status": "active",
"language": "en",
"answerType": "random",
"actionEnabled": "disabled",
"wantFeedback": "active",
"askedCount": 29,
"allowRelatedQue": "disabled",
"relatedQueIds": "",
"createdBy": 1,
"updatedBy": 1,
"dateCreated": "2020-06-22T16:17:32.000Z",
"dateUpdated": "2020-10-18T16:16:35.000Z",
"qnaMainQuestions": [
{
"id": 1,
"question": "Hi"
}
],
"qnaMainAnswers": [
{
"id": 1,
"answer": "Hello {{ visitor_name | there }}!",
"answerJson": null
}
],
"qnaMainActions": []
}
}
Last updated