mailerpress/get-contact-activity returns a chronological activity feed for one contact: opens, clicks and unsubscribes across every campaign they have received.
It is the per-person timeline.
At a glance
| Ability | mailerpress/get-contact-activity |
| Toolset | MailerPress — toolset/mailerpress |
| Group | MailerPress › Contacts |
| 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
Chronology is what makes it a timeline rather than a tally. A contact who opened everything for two years and nothing since March has a story the totals do not tell.
That pattern is the practical use: identifying contacts who have disengaged, which is what a re-engagement campaign or a list clean-up is built from.
Opens carry the usual unreliability — image blocking suppresses them, pre-fetching fabricates them — so a feed of clicks is more trustworthy than a feed of opens.
The unsubscribe entry, where present, is the end of the timeline. Nothing after it is possible.
Paginated at twenty-five rows per page on the MailerPress side, which on an engaged contact of several years is a lot of pages.
mailerpress/get-contact-campaign-history pivots the same data on the campaign axis instead.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
contact_id | integer | Yes | The contact. |
page | integer | No | Page number. |
What comes back
| Name | Type | What it is |
|---|---|---|
activity | array | Chronological opens, clicks and unsubscribes. |
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 has this contact done with our emails?
It resolves to one call:
{
"ability": "mailerpress/get-contact-activity",
"parameters": {
"contact_id": 118
}
}Worth knowing
- Chronology reveals disengagement that totals hide.
- Clicks are more trustworthy than opens.
- An unsubscribe ends the timeline.
- Twenty-five rows a page, which is many pages for an old contact.
Related abilities
- MailerPress Get Contact Campaign History — the campaign axis
- MailerPress Get Contact Stats — the totals
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category