> 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 # DeleteReferredFriend # Package: referralProgram # Namespace: ReferredFriends # Method link: https://dev.wix.com/docs/api-reference/business-management/marketing/referral-program/referred-friends/delete-referred-friend.md ## Permission Scopes: Manage Referrals: SCOPE.DC-REFERRALS.MANAGE-REFERRALS ## Introduction Deletes a referred friend. --- ## REST API ### Schema ``` Method: deleteReferredFriend Description: Deletes a referred friend. URL: https://www.wixapis.com/v1/referred-friends/{referredFriendId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: referredFriendId Method parameters: param name: referredFriendId | type: none | required: true query param name: revision | type: revision | description: Revision number, which increments by 1 each time the referred friend is updated. To prevent conflicting changes, the current revision must be passed when deleting the referred friend. Return type: DeleteReferredFriendResponse EMPTY-OBJECT {} ``` ### Examples ### Delete Referred Friend ```curl curl -X DELETE \ 'https://www.wixapis.com/referral_friends/v1/referred-friends/3857d039-b129-4393-b983-947078b6a007' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.referralProgram.ReferredFriends.deleteReferredFriend(referredFriendId, options) Description: Deletes a referred friend. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: referredFriendId Method parameters: param name: options | type: DeleteReferredFriendOptions none - name: revision | type: string | description: Revision number, which increments by 1 each time the referred friend is updated. To prevent conflicting changes, the current revision must be passed when deleting the referred friend. param name: referredFriendId | type: string | description: GUID of the referred friend to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteReferredFriend ```javascript import { friends } from '@wix/referral'; async function deleteReferredFriend(referredFriendId,options) { const response = await friends.deleteReferredFriend(referredFriendId,options); }; ``` ### deleteReferredFriend (with elevated permissions) ```javascript import { friends } from '@wix/referral'; import { auth } from '@wix/essentials'; async function myDeleteReferredFriendMethod(referredFriendId,options) { const elevatedDeleteReferredFriend = auth.elevate(friends.deleteReferredFriend); const response = await elevatedDeleteReferredFriend(referredFriendId,options); } ``` ### deleteReferredFriend (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 { friends } from '@wix/referral'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { friends }, // Include the auth strategy and host as relevant }); async function deleteReferredFriend(referredFriendId,options) { const response = await myWixClient.friends.deleteReferredFriend(referredFriendId,options); }; ``` ---