---
title: "Action autobroadcast__remove"
description: "Removes scheduled auto-broadcasts for the current user."
---

# Action `autobroadcast__remove`

> **System ID:** `action_autobroadcast__remove`

## Description

Removes scheduled auto-broadcasts for the current user. You can filter by `template_id` and/or `alias`. If both parameters are unset — **all** of the user’s auto-broadcasts are removed.

## Events (scenario branches)

| Event | When it occurs |
|-------|----------------|
| **success** | Removal completed |

## Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `template_id` | number | no | `null` | Remove only auto-broadcasts with this template ID |
| `alias` | string | no | `null` | Remove only auto-broadcasts with this alias |

If both are set — records matching **both** conditions are removed.

## Configuration example

```json
{
  "template_id": 123,
  "alias": "weekly_newsletter"
}
```

Remove all of the user’s auto-broadcasts:

```json
{}
```

## Related docs

- [Actions reference](/en/actionjail/reference/actions-reference.md)
