30 days free. No credit card. Full access from the moment you connect your site.

Start free trial

Get Ticket Settings

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

Abilitytickets/get-ticket-settings
ToolsetEvent Tickets — toolset/event-tickets
GroupEvent Tickets › Providers & Settings
RequiresEvent Tickets, active on the site
Capabilitymanage_options
SafetyRead-only — changes nothing
RepeatableIdempotent — running it twice leaves the same result
Ships inAcrossAI 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

NameTypeWhat it is
settingsarrayThe settings rows.
countintegerHow many rows were returned.
redactedintegerHow many were returned with a null value and a redacted flag.
successbooleanWhether the call completed.
messagestringA one-line summary of what happened, suitable for showing a human.
error_codestringPresent 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 redacted count keeps the two apart.
  • To change gateway configuration, use Tickets Commerce’s own settings screen.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading