Short walkthroughs that turn the platform into your operations team: automated pipelines, instant follow-ups, AI-handled admin. One video, one less thing to do manually.
Three ways to email a reporting dashboard as a digest — the Send Report button, the send_report_email automation action, and the inline {{report:UUID}} token.
Reporting dashboards are more useful when they land in your inbox automatically. With TrustPager's Report Digest feature you can send any dashboard as a formatted email snapshot — on a schedule, triggered by an automation, or on demand. A common use case: a daily digest that lands in your team's inbox each morning with yesterday's pipeline activity, so everyone starts the day on the same page without logging in first.
There are three surfaces depending on how you want to trigger the send:
Go to https://app.trustpager.com/auto/automations and open an existing automation (or create a new one). Add a new action and choose Send Report Email from the action list.
The action wizard has these key fields:
{{user_id}} in the Recipient User ID field to send each team member their own personalised view. When {{user_id}} is set, cards that are scoped to a specific person (e.g. "my open opportunities") will reflect that person's data rather than the workspace total.Save the action and publish the automation. The digest will fire whenever the automation trigger fires.
Each table card in a dashboard has its own column list. You can control exactly which columns appear — and in what order — by editing the card's display_config.columns setting. This is separate from the card's query dimensions (the data groupings that determine what rows appear).
The distinction matters:
["stage", "owner"]). These determine what rows are returned.query_spec.dimensions without appearing as a column, and vice versa for computed or aggregate columns. You can also rename a column label here without touching the underlying field name.To update a card's column list via the MCP AI agent, use the update_report_card tool:
update_report_card(
card_id: "<card-uuid>",
display_config: {
columns: ["stage", "count", "total_value"]
}
)
Pass only the columns you want shown, in the order you want them left to right. Omitting a field from columns hides it from the digest email without removing it from the underlying query.
The tasks data source has one virtual dimension: client. It resolves to whichever of contact_name or deal_name is present on the task row — a single human-readable label for who the task is about. It is computed after the query runs rather than being a real database column.
To include it in a tasks table card, add "client" to query_spec.dimensions alongside your other dimensions:
update_report_card(
card_id: "<card-uuid>",
query_spec: {
dimensions: ["due_date", "client", "status", "priority"]
}
)
Because client has no corresponding database column, it is silently skipped in SQL WHERE and ORDER BY clauses. This means:
"client" in query_spec.dimensions — it works fine."client" in query_spec.filters or query_spec.order_by — it will be silently ignored.Table cards support sorting by more than one field. Set query_spec.order_by to an array of { field, direction } objects. The compiler applies them left to right — the first entry is the primary sort, the second is the tiebreaker, and so on. The alias query_spec.sort is also accepted for compatibility with older cards.
update_report_card(
card_id: "<card-uuid>",
query_spec: {
order_by: [
{ field: "due_date", direction: "asc" },
{ field: "contact_name", direction: "asc" }
]
}
)
A single-object form is also valid: order_by: { field: "due_date", direction: "asc" }.
If you're already sending an email via an automation and want to include a dashboard snapshot inline — rather than a standalone digest — use the {{report:UUID}} token anywhere in your email body.
To find a dashboard's UUID, open it at https://app.trustpager.com/operations/reporting and look at the URL bar — it will read https://app.trustpager.com/operations/reporting/<UUID>. Copy the UUID from the URL and drop it into your token: {{report:abc123-...}}.
Use the inline token when the dashboard is supplementary context within a broader email. Use the dedicated Send Report Email action when the dashboard is the whole point of the email.
On any dashboard at https://app.trustpager.com/operations/reporting, click the Send Report button in the toolbar. This opens the same Send modal — choose a provider, add recipients, add an optional intro, and send. The email goes immediately. Saved templates from previous sends are available in the template picker at the top of the modal.
{{user_id}} on the action. Without it, the digest renders as a generic workspace view rather than each person's own data.display_config.columns you've configured.Talk to Evie right now, or book a real human for a deeper walkthrough. Whichever feels right.
Hear her in 10 seconds.

60 minutes with a real human · Google Meet · Free.