> 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 Members # Type: Staff Member Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/events/event-management/staff-members/staff-member-object.md ## Description: A Staff Member represents a person with predefined responsibilities for operating events. You can set each staff member's permissions and assign them to some or all events on a site. Upon creation, Wix automatically generates a login link for the staff member to the Check-in app, where they can perform their roles without interacting with the site itself. Learn more about [Check-in](https://support.wix.com/en/article/check-in-by-wix-an-overview). ## Schema: ```json Type: Staff Member Object | type: StaffMember Description: A Staff Member represents a person with predefined responsibilities for operating events. You can set each staff member's permissions and assign them to some or all events on a site. Upon creation, Wix automatically generates a login link for the staff member to the Check-in app, where they can perform their roles without interacting with the site itself. Learn more about [Check-in](https://support.wix.com/en/article/check-in-by-wix-an-overview). - name: id | type: string | description: Staff member ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the staff member is updated. To prevent conflicting changes, the existing `revision` must be used when updating a staff member. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the staff member was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the staff member was updated. - name: name | type: string | description: Staff member name. - name: status | type: string | description: Staff member status. To change the status, call Update Staff Member. enum: PENDING, HAS_ACCESS, ACCESS_PAUSED - name: extendedFields | type: ExtendedFields | description: Data extensions. - 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). - name: permissions | type: Array | description: Staff member permissions. enum: CHECK_IN_GUESTS, SELL_TICKETS, ADD_GUESTS, READ_ANALYTICS, READ_GUEST_FORM - name: loginLink | type: string | description: Login link generated for the staff member. This link opens up the [Check-in](https://support.wix.com/en/article/check-in-by-wix-an-overview) app. ```