> 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 # ResendInvite # Package: userManagement # Namespace: SiteInvitesApi # Method link: https://dev.wix.com/docs/api-reference/account-level/user-management/site-invites/resend-invite.md ## Permission Scopes: Manage Contributors: SCOPE.DC-IDENTITY.MANAGE-CONTRIBUTORS ## Introduction Resends the email invitation to a potential site contributor. > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. --- ## REST API ### Schema ``` Method: resendInvite Description: Resends the email invitation to a potential site contributor. > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. URL: https://www.wixapis.com/invites/site-invite/{inviteId}/resend Method: POST Method parameters: param name: defaultEmailLanguage | type: defaultEmailLanguage | description: Language of emails to send. Relevant only for recipients that don't currently have a Wix user GUID. Default: Site owner's language. Return type: SiteInviteResponse - name: invite | type: SiteInvite | description: Invites that were sent. - name: id | type: string | description: Invite GUID. - name: siteId | type: string | description: Site GUID 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 GUIDs included in the invite. - name: status | type: InviteStatus | 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 GUID. - name: acceptedByAccountId | type: string | description: Account GUID that accepted the invite. Populated only once the invite is accepted. - name: dateCreated | type: string | description: Date the invite was created. - name: staffId | type: string | description: User's Wix Bookings staff GUID, 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. ``` ### Examples ### Resend contributor invite ```curl curl -X POST \ 'https://www.wixapis.com/invites/site-invite/0092ff87-6028-41cb-92b5-980d5474abcf/resend' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.userManagement.SiteInvitesApi.resendInvite(inviteId, options) Description: Resends the email invitation to a potential site contributor. > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: inviteId Method parameters: param name: inviteId | type: string | description: Invite GUID. | required: true param name: options | type: ResendInviteOptions none - name: defaultEmailLanguage | type: string | description: Language of emails to send. Relevant only for recipients that don't currently have a Wix user GUID. Default: Site owner's language. Return type: PROMISE - name: invite | type: SiteInvite | description: Invites that were sent. - name: _id | type: string | description: Invite GUID. - name: siteId | type: string | description: Site GUID 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 GUIDs included in the invite. - name: status | type: InviteStatus | 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 GUID. - name: acceptedByAccountId | type: string | description: Account GUID that accepted the invite. Populated only once the invite is accepted. - name: dateCreated | type: Date | description: Date the invite was created. - name: staffId | type: string | description: User's Wix Bookings staff GUID, if relevant. - name: expirationDate | type: Date | 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. ``` ### Examples ### Resend a site invite with an API key ```javascript import { createClient, ApiKeyStrategy } from "@wix/sdk"; import { siteInvites } from "@wix/user-management"; const wixClient = createClient({ modules: { siteInvites }, auth: ApiKeyStrategy({ siteId: "MY-SITE-ID", apiKey: "MY-API-KEY", }), }); async function resendInvite(inviteId, options) { const response = await siteInvites.resendInvite(inviteId, options); } ``` ### resendInvite (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { siteInvites } from '@wix/user-management'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { siteInvites }, // Include the auth strategy and host as relevant }); async function resendInvite(inviteId,options) { const response = await myWixClient.siteInvites.resendInvite(inviteId,options); }; ``` ---