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

Start free trial

List Organizers

events/list-organizers returns the organizers on the site, newest first, each with phone, email and website.

Events store organizer IDs, so this is the call that turns a name into something you can write.

At a glance

Abilityevents/list-organizers
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

An organizer is a post type like a venue, but an event can have several of them where it has only one venue. That is why events/create-event takes an array here and a single ID there.

Contact details come back on every row. Organizers are the records most likely to be stale on an established calendar — people leave, email addresses change — and having the details in the listing makes the stale ones visible without a call each.

The search filter runs over the name, which is usually enough: organizer lists are shorter than venue lists on most sites.

Input

NameTypeRequiredWhat it is
searchstringNoFree-text search over the name.
pageintegerNo — defaults to 11-based page number.
per_pageintegerNo — defaults to 20Results per page, capped at 100.

What comes back

NameTypeWhat it is
organizersarrayOne entry per organizer: ID, name, status, phone, email and website.
totalintegerTotal organizers, before paging.
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:

Who are the organizers we have on file?

It resolves to one call:

{
  "ability": "events/list-organizers",
  "parameters": {
    "per_page": 50
  }
}

Worth knowing

  • An event can carry several organizers. Collect every ID you need before writing.
  • All contact fields are optional, so empty strings are normal.
  • Newest first, same as venues.

Related abilities


Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager

Browse the rest: Every ability, by category


Keep reading