> 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: Account Invites # Type: Account Invite Object # Link: https://dev.wix.com/docs/api-reference/account-level/user-management/accounts/account-invites/account-invite-object.md ## Description: This service manages all invites related actions (site and account level) ## Schema: ```json Type: Account Invite Object | type: AccountInvite Description: This service manages all invites related actions (site and account level) - name: id | type: string | description: Invite ID. - name: accountId | type: string | description: Account ID. - name: email | type: string | description: Email address where the invite was sent. - name: role | type: string | description: Deprecated. Use `policyIds`. - 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 has 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: policyIds | type: Array | description: Role IDs included in the invite. - name: dateUpdated | type: string | description: Date the invite was last updated. - name: assignments | type: Array | description: Assets the users are invited to join. - name: policyId | type: string | description: Role ID. - name: assignments | type: Array | description: Resources the user will be able to access. - name: fullNameResource | type: FullNameResource | description: Full name of resource to be assigned. - name: expirationDate | type: string | description: Invite expiration date. ```