> 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 # BulkArchiveExperiences # Package: reservations # Namespace: ExperiencesService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-archive-experiences.md ## Permission Scopes: Manage Reservation Locations: SCOPE.DC-RESERVATIONS.MANAGE-LOCATIONS ## Introduction Archives multiple experiences. Archiving an experience sets `configuration.visible` to `false`, preventing it from appearing on the live site and from accepting new reservations. To unarchive experiences, call [Bulk Unarchive Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-unarchive-experiences.md). --- ## REST API ### Schema ``` Method: bulkArchiveExperiences Description: Archives multiple experiences. Archiving an experience sets `configuration.visible` to `false`, preventing it from appearing on the live site and from accepting new reservations. To unarchive experiences, call [Bulk Unarchive Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-unarchive-experiences.md). URL: https://www.wixapis.com/v1/bulk/experiences/archive Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: experienceIds Method parameters: param name: experienceIds | type: array | description: IDs of the experiences to archive. | required: true Return type: BulkArchiveExperiencesResponse - name: results | type: array | description: Experiences updated by the bulk action. - name: itemMetadata | type: ItemMetadata | description: Metadata about archiving the experience. - 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: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata. - 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 archive experiences. ```curl curl -X POST "https://www.wixapis.com/table-reservations/experiences/v1/bulk/experiences/archive" \ -H "Authorization: " \ -H "Content-Type: application/json" \ --data ' { "experienceIds": [ "58a0a2a4-31e6-4909-a738-011c94e43f6e", "bd3a57af-2c85-4dbf-a141-51eda8c2f57c" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.reservations.ExperiencesService.bulkArchiveExperiences(experienceIds) Description: Archives multiple experiences. Archiving an experience sets `configuration.visible` to `false`, preventing it from appearing on the live site and from accepting new reservations. To unarchive experiences, call [Bulk Unarchive Experiences](https://dev.wix.com/docs/api-reference/business-solutions/restaurants/reservations/experiences/bulk-unarchive-experiences.md). # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: experienceIds Method parameters: param name: experienceIds | type: array | description: IDs of the experiences to archive. | required: true Return type: PROMISE - name: results | type: array | description: Experiences updated by the bulk action. - name: itemMetadata | type: ItemMetadata | description: Metadata about archiving the experience. - 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: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata. - 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 ### bulkArchiveExperiences ```javascript import { experiences } from '@wix/table-reservations'; async function bulkArchiveExperiences(experienceIds) { const response = await experiences.bulkArchiveExperiences(experienceIds); }; ``` ### bulkArchiveExperiences (with elevated permissions) ```javascript import { experiences } from '@wix/table-reservations'; import { auth } from '@wix/essentials'; async function myBulkArchiveExperiencesMethod(experienceIds) { const elevatedBulkArchiveExperiences = auth.elevate(experiences.bulkArchiveExperiences); const response = await elevatedBulkArchiveExperiences(experienceIds); } ``` ### bulkArchiveExperiences (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 { experiences } from '@wix/table-reservations'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { experiences }, // Include the auth strategy and host as relevant }); async function bulkArchiveExperiences(experienceIds) { const response = await myWixClient.experiences.bulkArchiveExperiences(experienceIds); }; ``` ---