listScheduleItems( )


Retrieves a list of up to 100 schedule items

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.v2"; async function listScheduleItems(options) { try { const result = await schedule.listScheduleItems(options); return result; } catch (error) { console.error(error); // Handle the error } }
Errors

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

Did this help?