This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Retrieves a list of events by their IDs.
function listEvents(
eventIds: Array<string>,
options: ListEventsOptions,
): Promise<ListEventsResponse>;
IDs of the events to retrieve.
Min: 1 event ID Min: 100 event IDs
import { events } from "@wix/calendar";
async function listEvents(eventIds, options) {
const response = await events.listEvents(eventIds, options);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.