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 schedule time frames by schedule IDs.
Sorted by schedule ID in ascending order.
function listScheduleTimeFrames(
ids: Array<string>,
options: ListScheduleTimeFramesOptions,
): Promise<ListScheduleTimeFramesResponse>;
IDs of the schedules for which to retrieve schedule time frames.
Min: 1 schedule ID Max: 100 schedule IDs
import { scheduleTimeFrames } from "@wix/calendar";
async function listScheduleTimeFrames(ids, options) {
const response = await scheduleTimeFrames.listScheduleTimeFrames(
ids,
options,
);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.