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
| Ability | events/list-organizers |
| Toolset | The Events Calendar — toolset/events-calendar |
| Group | The Events Calendar › Organizers |
| Requires | The Events Calendar, 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
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
| Name | Type | Required | What it is |
|---|---|---|---|
search | string | No | Free-text search over the name. |
page | integer | No — defaults to 1 | 1-based page number. |
per_page | integer | No — defaults to 20 | Results per page, capped at 100. |
What comes back
| Name | Type | What it is |
|---|---|---|
organizers | array | One entry per organizer: ID, name, status, phone, email and website. |
total | integer | Total organizers, before paging. |
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:
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 Organizer — one organizer in full
- Create Organizer — add one that is missing
- List Events — filter events by organizer
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category