> 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 # BulkUpdateOperationGroups # Package: onlineOrders # Namespace: OperationGroupService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/operation-groups/bulk-update-operation-groups.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Update multiple OperationGroups in a single request. Works synchronously. --- ## REST API ### Schema ``` Method: bulkUpdateOperationGroups Description: Update multiple OperationGroups in a single request. Works synchronously. URL: https://www.wixapis.com/restaurants/v1/bulk/operation-groups/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: operationGroups, operationGroups.operationGroup.revision Method parameters: param name: operationGroups | type: array | description: List of OperationGroups to be updated. | required: true - name: operationGroup | type: OperationGroup | description: OperationGroup to be updated, may be partial - name: revision | type: string | description: Revision number, which increments by 1 each time the OperationsGroup is updated. To prevent conflicting changes, the current revision must be passed when updating the OperationsGroup. Ignored when creating a OperationsGroup. | required: true - name: name | type: string | description: The name of the operations group - name: extendedFields | type: ExtendedFields | description: Data Extensions - 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 ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction.md) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction.md)) used to classify and sort different types of operation groups. - 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: tags | 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: set to `true` if you wish to receive back the updated OperationGroups in the response Return type: BulkUpdateOperationGroupsResponse - name: results | type: array | description: Results - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - 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 was successful for this item. When `false`, the `error` field is populated. - 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: OperationGroup | description: Only exists if `returnEntity` was set to true in the request - name: id | type: string | description: OperationsGroup GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the OperationsGroup is updated. To prevent conflicting changes, the current revision must be passed when updating the OperationsGroup. Ignored when creating a OperationsGroup. - name: createdDate | type: string | description: Date and time the OperationsGroup was created. - name: updatedDate | type: string | description: Date and time the OperationsGroup was last updated. - name: name | type: string | description: The name of the operations group - name: extendedFields | type: ExtendedFields | description: Data Extensions - 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 ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction.md) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction.md)) used to classify and sort different types of operation groups. - 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: tags | 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 ### Bulk update operation groups ```curl curl -X POST \ 'https://www.wixapis.com/restaurants/v1/bulk/operation-groups/update' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ --data-raw '{ "operation_groups": [ { "operation_group": { "id": "4820c639-4a9b-4583-8617-897e1102f369", "revision": "1", "name": "Catering" } }, { "operation_group": { "id": "68dc7603-3bc3-4641-b744-be84904190f9", "revision": "1", "name": "Delivery" } } ], "return_entity": true }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.OperationGroupService.bulkUpdateOperationGroups(operationGroups, options) Description: Update multiple OperationGroups in a single request. Works synchronously. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroups, operationGroups.operationGroup.revision Method parameters: param name: operationGroups | type: array | description: List of OperationGroups to be updated. | required: true - name: operationGroup | type: OperationGroup | description: OperationGroup to be updated, may be partial - name: revision | type: string | description: Revision number, which increments by 1 each time the OperationsGroup is updated. To prevent conflicting changes, the current revision must be passed when updating the OperationsGroup. Ignored when creating a OperationsGroup. | required: true - name: name | type: string | description: The name of the operations group - name: extendedFields | type: ExtendedFields | description: Data Extensions - 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 ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction.md) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction.md)) used to classify and sort different types of operation groups. - 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: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. param name: options | type: BulkUpdateOperationGroupsOptions none - name: returnEntity | type: boolean | description: set to `true` if you wish to receive back the updated OperationGroups in the response Return type: PROMISE - name: results | type: array | description: Results - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single update operation - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - 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 was successful for this item. When `false`, the `error` field is populated. - 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: OperationGroup | description: Only exists if `returnEntity` was set to true in the request - name: _id | type: string | description: OperationsGroup GUID. - name: revision | type: string | description: Revision number, which increments by 1 each time the OperationsGroup is updated. To prevent conflicting changes, the current revision must be passed when updating the OperationsGroup. Ignored when creating a OperationsGroup. - name: _createdDate | type: Date | description: Date and time the OperationsGroup was created. - name: _updatedDate | type: Date | description: Date and time the OperationsGroup was last updated. - name: name | type: string | description: The name of the operations group - name: extendedFields | type: ExtendedFields | description: Data Extensions - 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 ([SDK](https://dev.wix.com/docs/sdk/backend-modules/tags/tags/introduction.md) | [REST](https://dev.wix.com/docs/rest/business-management/tags/introduction.md)) used to classify and sort different types of operation groups. - 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: tags | 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 ### bulkUpdateOperationGroups ```javascript import { operationGroups } from '@wix/restaurants'; async function bulkUpdateOperationGroups(operationGroups,options) { const response = await operationGroups.bulkUpdateOperationGroups(operationGroups,options); }; ``` ### bulkUpdateOperationGroups (with elevated permissions) ```javascript import { operationGroups } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myBulkUpdateOperationGroupsMethod(operationGroups,options) { const elevatedBulkUpdateOperationGroups = auth.elevate(operationGroups.bulkUpdateOperationGroups); const response = await elevatedBulkUpdateOperationGroups(operationGroups,options); } ``` ### bulkUpdateOperationGroups (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 { operationGroups } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { operationGroups }, // Include the auth strategy and host as relevant }); async function bulkUpdateOperationGroups(operationGroups,options) { const response = await myWixClient.operationGroups.bulkUpdateOperationGroups(operationGroups,options); }; ``` ---