This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Assigns a custom working hours schedule to the staff member
The working hours schedule is a schedule that defines the working hours of a staff member,
and dictate when the staff member is available for bookings.
By default staff members use the shared business working hours schedule. By assigning a custom working hours schedule to a staff member,
you can define specific working hours f
or that staff member.
To create and manage schedules and working hours sessions, use [Events API](https://dev.wix.com/docs/sdk/backend-modules/calendar/events/intro).
You can only call this method when authenticated as a Wix app or Wix user identity.
function assignWorkingHoursSchedule(
staffMemberId: string,
scheduleId: string,
options: AssignWorkingHoursScheduleOptions,
): Promise<AssignWorkingHoursScheduleResponse>;
Id of the staff member to assign the schedule to.
Id of a schedule to assign to the staff's working hours schedule.
Options for setting the staff member's working hours schedule.
import { staffMembers } from "@wix/bookings";
async function assignWorkingHoursSchedule(staffMemberId, scheduleId, options) {
const response = await staffMembers.assignWorkingHoursSchedule(
staffMemberId,
scheduleId,
options,
);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.