> 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 # UpdateOperationGroup # Package: onlineOrders # Namespace: OperationGroupService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/operation-groups/update-operation-group.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Updates a OperationGroup. Each time the OperationGroup is updated, `revision` increments by 1. The current `revision` must be passed when updating the OperationGroup. This ensures you're working with the latest OperationGroup and prevents unintended overwrites. --- ## REST API ### Schema ``` Method: updateOperationGroup Description: Updates a OperationGroup. Each time the OperationGroup is updated, `revision` increments by 1. The current `revision` must be passed when updating the OperationGroup. This ensures you're working with the latest OperationGroup and prevents unintended overwrites. URL: https://www.wixapis.com/restaurants/v1/operation-groups/{operationGroup.id} Method: PATCH # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroup, operationGroup.id, operationGroup.revision Method parameters: param name: operationGroup | type: OperationGroup | description: An operation group is a aggregation of operations that each one of them point to a different location. Each operation group has different ordering page. | required: true - name: id | type: string | description: OperationsGroup GUID. | required: true - 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. Return type: UpdateOperationGroupResponse - name: operationGroup | type: OperationGroup | description: Updated OperationGroup. - 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. ``` ### Examples ### Update an availability exception ```curl curl -X PATCH https://www.wixapis.com/restaurants/v1/operation-groups/48605ac5-53fc-49b4-96b2-87f7636f5ce0 \ -H 'Content-Type: application/json;charset=UTF-8' \ -H 'Authorization: ' \ --data-raw '{ "operationGroup": { "revision": "1", "name": "Ordering page 2", } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.OperationGroupService.updateOperationGroup(_id, operationGroup) Description: Updates a OperationGroup. Each time the OperationGroup is updated, `revision` increments by 1. The current `revision` must be passed when updating the OperationGroup. This ensures you're working with the latest OperationGroup and prevents unintended overwrites. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroup, _id, operationGroup.revision Method parameters: param name: _id | type: string | description: OperationsGroup GUID. | required: true param name: operationGroup | type: UpdateOperationGroup | description: An operation group is a aggregation of operations that each one of them point to a different location. Each operation group has different ordering page. | required: true - 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. Return type: PROMISE - 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. ``` ### Examples ### updateOperationGroup ```javascript import { operationGroups } from '@wix/restaurants'; async function updateOperationGroup(_id,operationGroup) { const response = await operationGroups.updateOperationGroup(_id,operationGroup); }; ``` ### updateOperationGroup (with elevated permissions) ```javascript import { operationGroups } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myUpdateOperationGroupMethod(_id,operationGroup) { const elevatedUpdateOperationGroup = auth.elevate(operationGroups.updateOperationGroup); const response = await elevatedUpdateOperationGroup(_id,operationGroup); } ``` ### updateOperationGroup (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 updateOperationGroup(_id,operationGroup) { const response = await myWixClient.operationGroups.updateOperationGroup(_id,operationGroup); }; ``` ---