mailerpress/rename-list renames an existing MailerPress subscriber list.
It accepts name for consistency with the other rename abilities; MailerPress’s own endpoint reads it as title, and the translation happens at the boundary.
At a glance
| Ability | mailerpress/rename-list |
| Toolset | MailerPress — toolset/mailerpress |
| Group | MailerPress › Lists |
| Requires | AcrossAI Pro, plus MailerPress active on the site |
| Capability | manage_options |
| Safety | Writes data |
| Repeatable | Idempotent — running it twice leaves the same result |
| Ships in | AcrossAI Pro 0.9.16 and later |
How it works
That translation is worth knowing only because it explains why the parameter is named as it is. MailerPress uses title on the rename route and title again on creation, and calling the same concept name across every rename ability is more useful than mirroring each endpoint’s vocabulary.
Before renaming or deleting a tag or list, mailerpress/find-workflows-using is the only thing that surfaces which automations depend on it. The ID is stored under four different JSON shapes, so scanning by eye reliably misses cases.
A list referenced by a workflow is referenced by ID rather than by name in most places, so renaming usually does not break automation — but conditions that match by name exist, and those do break.
The list name is visible to subscribers in some contexts, including unsubscribe pages, so a rename is not purely internal.
Idempotent.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
id | integer | Yes | The list. |
name | string | Yes | The new name. |
What comes back
| Name | Type | What it is |
|---|---|---|
list | object | The list after the rename. |
success | boolean | Whether the call completed. |
message | string | A one-line summary of what happened, suitable for showing a human. |
error_code | string | Present only on failure — a stable machine-readable reason, such as a missing field, a wrong field type or an unmet confirmation. |
Example
Ask your assistant:
Rename that list.
It resolves to one call:
{
"ability": "mailerpress/rename-list",
"parameters": {
"id": 3,
"name": "Weekly newsletter"
}
}Worth knowing
namehere,titlein MailerPress — translated at the boundary.- Workflow conditions matching by name break on a rename.
- The name is visible to subscribers in some places.
- Idempotent.
Related abilities
- MailerPress Find Workflows Using — check dependencies first
- MailerPress List Lists — the current names
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category