assignWorkingHoursSchedule( )


Developer Preview

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

Copy
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).
Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Bookings - all permissions
Manage Bookings
Learn more about app permissions.
Method Declaration
Copy
function assignWorkingHoursSchedule(
  staffMemberId: string,
  scheduleId: string,
  options: AssignWorkingHoursScheduleOptions,
): Promise<AssignWorkingHoursScheduleResponse>;
Method Parameters
staffMemberIdstringRequired

Id of the staff member to assign the schedule to.


scheduleIdstringRequired

Id of a schedule to assign to the staff's working hours schedule.


optionsAssignWorkingHoursScheduleOptions

Options for setting the staff member's working hours schedule.

Returns
Return Type:Promise<AssignWorkingHoursScheduleResponse>
JavaScript
import { staffMembers } from "@wix/bookings"; async function assignWorkingHoursSchedule(staffMemberId, scheduleId, options) { const response = await staffMembers.assignWorkingHoursSchedule( staffMemberId, scheduleId, options, ); }
Errors

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

Did this help?