> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Staff Member Settings # Type: Staff Member Settings Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-member-settings/staff-member-settings-object.md ## Description: Settings that control the visibility of staff members' contact information. These settings determine whether the `email` and `phone` fields are populated in [staff member objects](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/staff-member-object.md). When enabled, these fields contain staff contact information. When disabled, these fields are empty if the calling [identity](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities.md) doesn't have sufficient permissions. Identities with appropriate permissions may still access the information. This is a singleton resource. Each site has exactly one settings object, automatically created when Wix Bookings is installed. ## Schema: ```json Type: Staff Member Settings Object | type: StaffMemberSettings Description: Settings that control the visibility of staff members' contact information. These settings determine whether the `email` and `phone` fields are populated in [staff member objects](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/staff-member-object.md). When enabled, these fields contain staff contact information. When disabled, these fields are empty if the calling [identity](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities.md) doesn't have sufficient permissions. Identities with appropriate permissions may still access the information. This is a singleton resource. Each site has exactly one settings object, automatically created when Wix Bookings is installed. - name: id | type: string | description: ID of the staff member settings object. There is one settings object per site. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the `staffMemberSettings` object is updated. To prevent conflicting changes, the current revision must be specified when updating the `staffMemberSettings` object. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the `staffMemberSettings` object was created in `YYYY-MM-DDThh:mm:ss.sssZ` format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the `staffMemberSettings` object was last updated in `YYYY-MM-DDThh:mm:ss.sssZ` format. - name: contactInformation | type: ContactInformation | description: Privacy settings for controlling staff member contact information visibility in API responses and on the live site. - name: publiclyAccessible | type: boolean | description: Whether staff members' email addresses and phone numbers are accessible in API responses and on the live site. - `true`: The `email` and `phone` fields in [staff member objects](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/staff-member-object.md) contain actual contact information, and this information is displayed on the live site. - `false`: These fields are empty in API responses if the calling [identity](https://dev.wix.com/docs/build-apps/develop-your-app/access/about-identities.md) doesn't have sufficient permissions, and contact information isn't displayed on the live site. Identities with appropriate permissions can still access this information in API responses regardless of this setting. Default: `false` - name: value | type: boolean | description: - name: extendedFields | type: ExtendedFields | description: Custom field data for the staff member settings. Extended fields must be configured in the app dashboard before they can be accessed with API calls. Learn more about extended fields at https://dev.wix.com/docs/rest/articles/getting-started/extended-fields..md - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). ```