Bulk Action

Take bulk action on QnAs

Bulk Update

POST https://{{account_id}}.acquire.io/api/v1/bot/qna/bulk

Perform a bulk action on multiple QnAs.

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

Request Body

NameTypeDescription

tab

string

Specify the section. Current sections: "qna"

recordIds

array

Array of integers. The IDs of the QnAs.

groupId

integer

The QnA's group

actionType

string

Specify which action to take. Current actions: "delete".

{
  "data": {
    "success": true,
    "message": "Questions deleted successfully",
    "lessEventsNotice": true
  }
}

Body(raw)

{
   "actionType":"delete",
   "groupId":1,
   "recordIds":[
      2,
      1
   ],
   "tab":"qna"
}

Last updated