30 days free. No credit card. Full access from the moment you connect your site.

Start free trial

MailerPress Rename List

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

Abilitymailerpress/rename-list
ToolsetMailerPress — toolset/mailerpress
GroupMailerPress › Lists
RequiresAcrossAI Pro, plus MailerPress active on the site
Capabilitymanage_options
SafetyWrites data
RepeatableIdempotent — running it twice leaves the same result
Ships inAcrossAI 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

NameTypeRequiredWhat it is
idintegerYesThe list.
namestringYesThe new name.

What comes back

NameTypeWhat it is
listobjectThe list after the rename.
successbooleanWhether the call completed.
messagestringA one-line summary of what happened, suitable for showing a human.
error_codestringPresent 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

  • name here, title in 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


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading