mailerpress/list-sent-campaigns returns the historical archive of every completed send: campaign ID, name, created and updated timestamps.
There is no pagination on the MailerPress side, so this returns everything.
At a glance
| Ability | mailerpress/list-sent-campaigns |
| Toolset | MailerPress — toolset/mailerpress |
| Group | MailerPress › Campaigns & Sending |
| Requires | AcrossAI Pro, plus MailerPress active on the site |
| Capability | manage_options |
| Safety | Read-only — changes nothing |
| Repeatable | Idempotent — running it twice leaves the same result |
| Ships in | AcrossAI Pro 0.9.16 and later |
How it works
On a site that has been sending for years that is a large response, and there is no way to narrow it at the source. That is worth knowing before calling it on a busy install.
What it gives that mailerpress/list-campaigns does not is certainty. A campaign’s status can be edited; this archive records what actually completed.
That distinction matters for anything auditing sending history — a campaign marked sent and a campaign that sent are not necessarily the same set.
The bare array MailerPress returns is wrapped into an object so callers do not have to special-case the shape.
For statistics, mailerpress/get-campaign-stats takes the IDs from here.
Input
This ability takes no input.
What comes back
| Name | Type | What it is |
|---|---|---|
campaigns | array | Every completed send with its ID, name and timestamps. |
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:
What have we actually sent?
It resolves to one call:
{
"ability": "mailerpress/list-sent-campaigns",
"parameters": {}
}Worth knowing
- No pagination — this returns the whole archive.
- Records what completed, as against what is marked sent.
- Large on an established site.
- The bare array is wrapped for consistency.
Related abilities
- MailerPress List Campaigns — by status instead
- MailerPress Get Campaign Stats — performance for these IDs
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category