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
| Ability | events/get-organizer |
| 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
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
| Name | Type | Required | What it is |
|---|---|---|---|
id | integer | Yes | The organizer ID. |
What comes back
| Name | Type | What it is |
|---|---|---|
organizer | object | ID, name, status, phone, email and website. |
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 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
- Update Organizer — correct the details
- List Events — everything this organizer runs
Get the plugins:
AcrossAI Abilities Manager · AcrossAI MCP Manager
Browse the rest: Every ability, by category