> 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 # DuplicateSection # Package: menus # Namespace: RestaurantsDuplicateSection # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/sections/duplicate-section.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Duplicates a section. You can duplicate a section to the same business location, or to 1 or more different business locations. You can specify whether to also duplicate the section's sub-entities, such as its items. --- ## REST API ### Schema ``` Method: duplicateSection Description: Duplicates a section. You can duplicate a section to the same business location, or to 1 or more different business locations. You can specify whether to also duplicate the section's sub-entities, such as its items. URL: https://www.wixapis.com/restaurants/menus/v1/sections/{id}/duplicate Method: POST Method parameters: param name: businessLocationIds | type: array | description: Business location GUIDs to assign to the duplicated section or sections. If you specify one or more GUIDs, a duplicate is created for each GUID, with that GUID in its `businessLocationId` field. If you don't specify an GUID, one duplicate is created with the same `businessLocationId` as the original section. param name: duplicateSubEntities | type: duplicateSubEntities | description: Whether to duplicate the section's sub-entities, such as its items. Default: `false` Return type: DuplicateSectionResponse - name: sectionId | type: array | description: IDs of the newly created sections. ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.menus.RestaurantsDuplicateSection.duplicateSection(_id, options) Description: Duplicates a section. You can duplicate a section to the same business location, or to 1 or more different business locations. You can specify whether to also duplicate the section's sub-entities, such as its items. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: _id Method parameters: param name: _id | type: string | description: GUID of the section to be duplicated. | required: true param name: options | type: DuplicateSectionOptions none - name: businessLocationIds | type: array | description: Business location GUIDs to assign to the duplicated section or sections. If you specify one or more GUIDs, a duplicate is created for each GUID, with that GUID in its `businessLocationId` field. If you don't specify an GUID, one duplicate is created with the same `businessLocationId` as the original section. - name: duplicateSubEntities | type: boolean | description: Whether to duplicate the section's sub-entities, such as its items. Default: `false` Return type: PROMISE - name: sectionId | type: array | description: IDs of the newly created sections. ``` ### Examples ### duplicateSection ```javascript import { sections } from '@wix/restaurants'; async function duplicateSection(_id,options) { const response = await sections.duplicateSection(_id,options); }; ``` ### duplicateSection (with elevated permissions) ```javascript import { sections } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myDuplicateSectionMethod(_id,options) { const elevatedDuplicateSection = auth.elevate(sections.duplicateSection); const response = await elevatedDuplicateSection(_id,options); } ``` ### duplicateSection (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 { sections } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { sections }, // Include the auth strategy and host as relevant }); async function duplicateSection(_id,options) { const response = await myWixClient.sections.duplicateSection(_id,options); }; ``` ---