tickets/get-sales-summary reports what has sold for a post: totals per ticket, and an estimated revenue figure.
Aggregate only. No purchaser names, no emails, nothing about any individual buyer.
At a glance
| Ability | tickets/get-sales-summary |
| Toolset | Event Tickets — toolset/event-tickets |
| Group | Event Tickets › Orders |
| Requires | Event Tickets, active on the site |
| Capability | manage_options |
| Safety | Read-only — changes nothing |
| Repeatable | Idempotent — running it twice leaves the same result |
| Ships in | AcrossAI Abilities Manager 0.0.34 and later |
How it works
Revenue here is current price multiplied by quantity sold. It is not read from the payment ledger.
So if a ticket was £30 for the first forty buyers and £25 after an early-bird window closed, this reports all sixty at whatever the price is today. The number is useful for “roughly how are we doing” and wrong for accounting.
For the actual money, tickets/list-orders reports each order’s recorded total as the gateway charged it.
Input
| Name | Type | Required | What it is |
|---|---|---|---|
post_id | integer | Yes | The event, page or other ticketed post. |
What comes back
| Name | Type | What it is |
|---|---|---|
sales | object | Quantity sold per ticket and an estimated revenue total. |
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:
How are ticket sales going for this event?
It resolves to one call:
{
"ability": "tickets/get-sales-summary",
"parameters": {
"post_id": 412
}
}Worth knowing
- The revenue figure is an estimate from current prices. Do not reconcile books against it.
- No purchaser data at all, so it is safe to share.
- For real totals, read the orders.
Related abilities
- List Orders — the recorded totals
- Get Capacity Report — what is left to sell
- List Tickets — the prices behind the estimate
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category