# Bulk Action

## Bulk Action on bots

<mark style="color:green;">`POST`</mark> `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.&#x20;

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer {{api\_key}} |

#### Request Body

| Name                                         | Type   | Description                                  |
| -------------------------------------------- | ------ | -------------------------------------------- |
| recordIds<mark style="color:red;">\*</mark>  | array  | Array of integers. An array of sequence IDs. |
| actionType<mark style="color:red;">\*</mark> | string | The bulk action you want performed.          |

{% tabs %}
{% tab title="200 " %}

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

```

{% endtab %}
{% endtabs %}

## Body(raw)

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

```
