Events
List My Events
Returns a paginated list of event tickets belonging to the authenticated customer, optionally filtered to upcoming events.
GET
List My Events
Documentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
List My Events
Returns a paginated list of event attendances (tickets) for the authenticated customer. PassshowUpcoming=true to restrict the list to events that have not yet started — used to power the “Upcoming Events” widget on the personal dashboard and the tickets counter.
Authentication
Requires a valid customer bearer token.Query Parameters
true — return only tickets for events whose end date is in the future. false — return all tickets regardless of event date.Comma-separated dot-notated field paths to include in the response. When provided, only the
specified fields are returned — useful for reducing payload size. Example:
_shape=Records.Id,Records.CalendarEvent.Name1-based page number. Default:
1Records per page. Default:
25 · Maximum: 100Field to sort by. Default:
CreatedOnasc or desc. Default: descResponse
Returns aMyEvents object which extends ApiListResult<EventAttendee>. See API Overview for pagination fields. The Records array contains attendee (ticket) objects.
Core Fields
Unique identifier for the ticket/attendance record. Use this as
{id} in the sendTicket and cancelTicket endpoints.Unique code printed on the ticket — used for check-in at the event.
Full name of the ticket holder.
Email address of the ticket holder.
Event & Product
The event this ticket belongs to. See List Events for the full
CalendarEvent schema.The ticket product that was purchased. Contains price, name, and availability details.
Denormalised name of the ticket product — available without expanding
EventProduct.Denormalised price of the ticket product in the location’s currency.
Attendee
The
Coworker object for the ticket holder, including profile and contact information.The coworking location where the event takes place.
Timestamps
All datetime fields are ISO 8601 strings.*On fields are in the location’s local timezone; *OnUtc fields are UTC.
Local datetime the ticket was issued.
UTC datetime the ticket was issued.
Local datetime of the last update.
UTC datetime of the last update.
Examples
Fetch upcoming tickets (full payload)
Fetch my events with a minimal field set
TypeScript Integration
Usage in Portal
| Context | Source file |
|---|---|
My Events page (/activity/events) | src/views/user/activity/events/MyEventsSection.tsx |
| Weekly Agenda calendar widget (personal dashboard) | src/views/user/dashboards/personal/components/WeeklyAgendaCalendar/WeeklyAgendaCalendar.tsx |
| Tickets statistic widget (personal dashboard) | src/views/user/dashboards/personal/components/Statistics/widgets/TicketsStatisticWidget.tsx |
Error Responses
The customer is not authenticated or the session has expired.
Related Endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /api/public/events | Browse all published events |
GET | /api/public/events/{id} | Full detail for a specific event |
POST | /api/public/events/my/{id}/sendTicket | Re-send a ticket confirmation email |
DELETE | /api/public/events/my/{id} | Cancel (delete) a ticket |
POST | /api/public/events/{id}/joinWaitingList | Join the waiting list for a sold-out event |
List My Events