Bulk Action

Perform bulk actions on bots

Bulk Action on bots

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

Perform bulk action on bots. Store the sequence IDs in an array set to "recordIds". Set your desired action to "actionType". Available actions: "delete" - Deletes the sequences.

Headers

NameTypeDescription

Authorization*

string

Bearer {{api_key}}

Request Body

NameTypeDescription

recordIds*

array

Array of integers. An array of sequence IDs.

actionType*

string

The bulk action you want performed.

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

Body(raw)

{
  "actionType": "delete",
  "recordIds": [
    137
  ]
}

Last updated