tickets/get-ticket-settings returns the ticketing settings as rows: what is configured, and what it is set to.
Credentials are not among them, and the reason is worth understanding rather than taking on trust.
At a glance
| Ability | tickets/get-ticket-settings |
| Toolset | Event Tickets — toolset/event-tickets |
| Group | Event Tickets › Providers & Settings |
| 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
Tickets Commerce keeps its Stripe, PayPal and Square tokens, webhook signing keys and verifiers in separate option rows, not in the shared settings blob. This ability reads only the blob, so those values are not merely filtered out — they are never fetched.
That is a stronger guarantee than redaction. A filter can be got wrong; not reading the row cannot.
Anything credential-shaped that does turn up in the blob is returned with a null value and a redacted flag, and the count appears in redacted so you can tell a redacted setting from an empty one.
Input
This ability takes no input.
What comes back
| Name | Type | What it is |
|---|---|---|
settings | array | The settings rows. |
count | integer | How many rows were returned. |
redacted | integer | How many were returned with a null value and a redacted flag. |
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 ticketing settings are configured on this site?
It resolves to one call:
{
"ability": "tickets/get-ticket-settings",
"parameters": {}
}Worth knowing
- Safe to share. No gateway credential is reachable through this ability.
- A redacted row is not an empty row. The
redactedcount keeps the two apart. - To change gateway configuration, use Tickets Commerce’s own settings screen.
Related abilities
- List Ticket Providers — what is active
- Create Ticket — what the settings govern
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category