> 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 # DeleteRecipient # Package: onlineOrders # Namespace: NotificationRecipientsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/notification-recipients/delete-recipient.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Deletes a recipient. --- ## REST API ### Schema ``` Method: deleteRecipient Description: Deletes a recipient. URL: https://www.wixapis.com/rest-notification-recipients/v1/recipients/{recipientId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: recipientId Method parameters: param name: recipientId | type: none | required: true Return type: DeleteRecipientResponse EMPTY-OBJECT {} ``` ### Examples ### DeleteRecipient ```curl ~~~cURL curl -X DELETE \ 'https://www.wixapis.com/restaurants/v1/recipients/12345678-1234-1234-1234-123456789012' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.NotificationRecipientsService.deleteRecipient(recipientId) Description: Deletes a recipient. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: recipientId Method parameters: param name: recipientId | type: string | description: GUID of the recipient to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteRecipient ```javascript import { recipients } from '@wix/restaurants'; async function deleteRecipient(recipientId) { const response = await recipients.deleteRecipient(recipientId); }; ``` ### deleteRecipient (with elevated permissions) ```javascript import { recipients } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myDeleteRecipientMethod(recipientId) { const elevatedDeleteRecipient = auth.elevate(recipients.deleteRecipient); const response = await elevatedDeleteRecipient(recipientId); } ``` ### deleteRecipient (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 { recipients } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { recipients }, // Include the auth strategy and host as relevant }); async function deleteRecipient(recipientId) { const response = await myWixClient.recipients.deleteRecipient(recipientId); }; ``` ---