> 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: Site Invites # Type: Site Invite Object # Link: https://dev.wix.com/docs/api-reference/account-level/user-management/site-invites/site-invite-object.md ## Description: This service manages all invites related actions (site and account level) ## Schema: ```json Type: Site Invite Object | type: SiteInvite Description: This service manages all invites related actions (site and account level) - name: id | type: string | description: Invite ID. - name: siteId | type: string | description: Site ID the user is invited to as a collaborator. - name: email | type: string | description: Email address where the invite was sent. - name: policyIds | type: Array | description: Role IDs included in the invite. - name: inviterId | type: string | description: Deprecated. Use `inviterAccountId`. - name: status | type: string | description: Invite Status. Supported values: - **Pending:** The invite has been sent and is valid, waiting for the user's response. - **Used:** The invite has been accepted. - **Deleted:** The invite has been deleted or revoked. - **Declined:** The user declined the invite. - **Expired:** The invite has expired without being accepted. enum: Pending, Used, Deleted, Declined, Expired - name: acceptLink | type: string | description: Link to accept the invite. - name: inviterAccountId | type: string | description: Inviting account ID. - name: acceptedByAccountId | type: string | description: Account ID that accepted the invite. Populated only once the invite is accepted. - name: value | type: string | description: - name: dateCreated | type: string | description: Date the invite was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: staffId | type: string | description: User's Wix Bookings staff ID, if relevant. - name: expirationDate | type: string | description: Invite expiration date - name: locationIds | type: Array | description: Location ids included in the invite - name: callerCapabilities | type: Array | description: A set of capability keys representing the actions that the caller is allowed to perform on this specific contributor. This field is calculated based on the identity of the request sender and may differ between callers. ```