Publish
Change the status of a QnA
Last updated
Change the status of a QnA
PUT https://{{account_id}}.acquire.io/api/v1/bot/qna/move/{{id}}
Publish or draft a QnA. The QnA id must be passed in to the endpoint as a path parameter. If a question is a draft, it will be published. If a question is published, it will be set to draft.
id
integer
Specify QnA id
Authorization
string
Bearer {{api_key}}
{
"data": {
"success": true,
"message": "Question Published Successfully",
"movedId": 3775
}
}
Last updated