> 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 # BulkUpdateRecipients # Package: onlineOrders # Namespace: NotificationRecipientsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/notification-recipients/bulk-update-recipients.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Updates multiple recipients in a single request. This is a synchronous operation that updates up to 100 recipients at once. Each recipient must include the current `revision` to ensure you're working with the latest data. --- ## REST API ### Schema ``` Method: bulkUpdateRecipients Description: Updates multiple recipients in a single request. This is a synchronous operation that updates up to 100 recipients at once. Each recipient must include the current `revision` to ensure you're working with the latest data. URL: https://www.wixapis.com/rest-notification-recipients/v1/bulk/recipients/update Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: recipients, recipients.recipient, recipients.recipient.id, recipients.recipient.revision Method parameters: param name: recipients | type: array | description: List of Recipients to be updated. | required: true - name: recipient | type: Recipient | description: Recipient to be updated, may be partial. | required: true - name: id | type: string | description: Recipient GUID. | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. | required: true - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. param name: returnEntity | type: returnEntity | description: Whether to return the updated Recipients in the response. Return type: BulkUpdateRecipientsResponse - name: results | type: array | description: Results of the bulk update operation. - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation. - name: id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed. - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: Recipient | description: Updated recipient. Only returned if `returnEntity` was set to `true` in the request. - name: id | type: string | description: Recipient GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. - name: createdDate | type: string | description: Date and time the Recipient was created. - name: updatedDate | type: string | description: Date and time the Recipient was last updated. - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata regarding the bulk update operation. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.NotificationRecipientsService.bulkUpdateRecipients(recipients, options) Description: Updates multiple recipients in a single request. This is a synchronous operation that updates up to 100 recipients at once. Each recipient must include the current `revision` to ensure you're working with the latest data. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: recipients, recipients.recipient, recipients.recipient._id, recipients.recipient.revision Method parameters: param name: options | type: BulkUpdateRecipientsOptions none - name: returnEntity | type: boolean | description: Whether to return the updated Recipients in the response. param name: recipients | type: array | description: List of Recipients to be updated. | required: true - name: recipient | type: Recipient | description: Recipient to be updated, may be partial. | required: true - name: _id | type: string | description: Recipient GUID. | required: true - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. | required: true - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. Return type: PROMISE - name: results | type: array | description: Results of the bulk update operation. - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation. - name: _id | type: string | description: Item GUID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed. - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action for this item was successful. When `false`, the `error` field is returned. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: Recipient | description: Updated recipient. Only returned if `returnEntity` was set to `true` in the request. - name: _id | type: string | description: Recipient GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the Recipient is updated. To prevent conflicting changes, the current revision must be passed when updating the Recipient. Ignored when creating a Recipient. - name: _createdDate | type: Date | description: Date and time the Recipient was created. - name: _updatedDate | type: Date | description: Date and time the Recipient was last updated. - name: phone | type: string | description: Recipient's phone number for receiving notifications. - name: businessLocationIds | type: array | description: IDs of the business locations this recipient should receive order creation notifications for. If this list is empty the recipient receives notifications for orders created at all locations. - name: channels | type: array | description: Communication channels for sending notifications to the recipient. At least 1 channel is required. Recipients can receive notifications through multiple channels simultaneously. - enum: - SMS: Send notifications via SMS text messages. - PHONE: Send notifications via phone calls. - name: note | type: string | description: Additional information about the recipient. Use this field to store notes about the recipient's role, availability, or other relevant details for notification management. - name: extendedFields | type: ExtendedFields | description: Additional custom fields for the recipient. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: tags | type: Tags | description: Tags for categorizing and organizing recipients. Use tags to group recipients by role (manager, kitchen staff), shift (morning, evening), or other criteria for targeted notifications. - name: privateTags | type: TagList | description: Tags that require an additional permission in order to access them, normally not given to site members or visitors. - name: tagIds | type: array | description: List of tag GUIDs. - name: publicTags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata regarding the bulk update operation. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkUpdateRecipients ```javascript import { recipients } from '@wix/restaurants'; async function bulkUpdateRecipients(recipients,options) { const response = await recipients.bulkUpdateRecipients(recipients,options); }; ``` ### bulkUpdateRecipients (with elevated permissions) ```javascript import { recipients } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myBulkUpdateRecipientsMethod(recipients,options) { const elevatedBulkUpdateRecipients = auth.elevate(recipients.bulkUpdateRecipients); const response = await elevatedBulkUpdateRecipients(recipients,options); } ``` ### bulkUpdateRecipients (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 bulkUpdateRecipients(recipients,options) { const response = await myWixClient.recipients.bulkUpdateRecipients(recipients,options); }; ``` ---