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

Start free trial

Get Organizer

events/get-organizer reads a single organizer: name, status, phone, email and website.

Use it when an event hands you an ID and you need the record behind it.

At a glance

Abilityevents/get-organizer
ToolsetThe Events Calendar — toolset/events-calendar
GroupThe Events Calendar › Organizers
RequiresThe Events Calendar, 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

Organizers are stored as their own post type with contact details in prefixed meta, the same shape as venues. Events hold only the IDs, so anything displayed about an organizer on an event page is read through the link at render time.

Which means this is also how you check whether an organizer link is broken. A trashed organizer still has events pointing at it, and reading the ID is what turns a silently blank section on the front end into a definite answer.

The status is included for the same reason it is on venues: a draft organizer attached to a published event displays nothing to logged-out visitors.

Input

NameTypeRequiredWhat it is
idintegerYesThe organizer ID.

What comes back

NameTypeWhat it is
organizerobjectID, name, status, phone, email and website.
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 are the contact details for organizer 96?

It resolves to one call:

{
  "ability": "events/get-organizer",
  "parameters": {
    "id": 96
  }
}

Worth knowing

  • Refused if the ID is not an organizer.
  • Check the status first when an organizer appears blank on the front end.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading