> 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: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/sample-flows.md ## Article Content: # Bookings Staff Members APIs: Sample Flows This article demonstrates common integration patterns for the Bookings Staff Members APIs. ## Retrieve staff contact information Retrieve staff members' email addresses and phone numbers based on the current privacy settings. 1. Call [Get Staff Member Settings](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-member-settings/get-staff-member-settings.md) to check if contact information is publicly accessible. If `staffMemberSettings.contactInformation.publiclyAccessible` is `false`, the identity you're authenticated as needs the `BOOKINGS.STAFF_MEMBER_READ_PI` permission to retrieve contact information. 2. Call [Get Staff Member](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/get-staff-member.md) or [Query Staff Members](https://dev.wix.com/docs/api-reference/business-solutions/bookings/staff-members/staff-members/query-staff-members.md) with the staff member ID. 3. Access the `email` and `phone` properties in the response to get the contact information. If `publiclyAccessible` is `false` and you don't have the `BOOKINGS.STAFF_MEMBER_READ_PI` permission, these properties are empty. The Staff Members API is the only way to retrieve this information. There's no alternative API method.