listScheduleItems( )


Retrieves a list of up to 100 schedule items

Permissions
Manage Events
Learn more about app permissions.
Method Declaration
Copy
function listScheduleItems(
  options: ListScheduleItemsOptions,
): Promise<ListScheduleItemsResponse>;
Method Parameters
optionsListScheduleItemsOptions

Optional fields.

Returns
Return Type:Promise<ListScheduleItemsResponse>
JavaScript
import { schedule } from "@wix/events"; async function listScheduleItems(options) { const response = await schedule.listScheduleItems(options); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?