> ## Documentation Index
> Fetch the complete documentation index at: https://docs.syntr.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk Operations

> Perform batch actions (add, remove, move, delete) on subscribers.

### Request Body

<ParamField body="operation" type="string" required>
  add, remove, move, delete
</ParamField>

<ParamField body="subscriberIds" type="array" required>
  List of IDs to update
</ParamField>

<ParamField body="targetListId" type="string">
  Destination list ID
</ParamField>

<ParamField body="sourceListId" type="string">
  Origin list ID (for move)
</ParamField>

<ParamField body="selectAll" type="boolean">
  Apply to all matching search/filter
</ParamField>

<ParamField body="excludedIds" type="array">
  IDs to skip if selectAll is true
</ParamField>

<RequestExample>
  ```json Request theme={null}
  {
    "operation": "move",
    "subscriberIds": [
      "88de"
    ],
    "targetListId": "99de",
    "sourceListId": "a0ee"
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "data": {
      "count": 1
    },
    "message": "Bulk operation completed successfully."
  }
  ```
</ResponseExample>
