> 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 # Method name: bulkCreateCategory(categories: Array) # Method package: wixEventsV2 # Method menu location: wixEventsV2 --> categories --> bulkCreateCategory # Method Link: https://dev.wix.com/docs/velo/apis/wix-events-v2/categories/bulk-create-category.md # Method Description: Creates multipe categories at once. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create multiple categories (export from backend code) ```javascript import { categories } from 'wix-events.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedBulkCreateCategory = elevate(categories.bulkCreateCategory); /* * Sample categories value: * [ * { * "name": "leather", * "states": ["MANUAL"] * }, * { * "name": "shoes", * "states": ["HIDDEN"] * } * ] */ export const myBulkCreateCategoryFunction = webMethod( Permissions.Anyone, async (categories) => { try { const createdCategories = await elevatedBulkCreateCategory(categories); console.log('Created categories: ', createdCategories); return createdCategories; } catch (error) { console.error(error); // Handle the error } } ); /* Promise resolves to: * { * "results": [ * { * "itemMetadata": { * "originalIndex": 0, * "success": true, * "_id": "7d2560a8-b0ab-41fe-9c7c-6584157b2de1" * }, * "item": { * "name": "leather", * "states": [ * "MANUAL" * ], * "_id": "7d2560a8-b0ab-41fe-9c7c-6584157b2de1", * "_createdDate": "2024-04-23T07:27:41.048Z" * } * }, * { * "itemMetadata": { * "originalIndex": 1, * "success": true, * "_id": "022cdce2-6d8d-4dfd-9210-4b6671539173" * }, * "item": { * "name": "shoes", * "states": [ * "HIDDEN" * ], * "_id": "022cdce2-6d8d-4dfd-9210-4b6671539173", * "_createdDate": "2024-04-23T07:27:41.048Z" * } * } * ], * "bulkActionMetadata": { * "totalSuccesses": 2, * "totalFailures": 0, * "undetailedFailures": 0 * } * } */ ``` ## Create multiple categories (dashboard page code) ```javascript import { categories } from 'wix-events.v2'; /* * Sample categories value: * [ * { * "name": "leather", * "states": ["MANUAL"] * }, * { * "name": "shoes", * "states": ["MANUAL"] * } * ] */ export async function myBulkCreateCategoryFunction(categories) { try { const createdCategories = await categories.bulkCreateCategory(categories); console.log('Created categories: ', createdCategories); return createdCategories; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: * { * "results": [ * { * "itemMetadata": { * "originalIndex": 0, * "success": true, * "_id": "7d2560a8-b0ab-41fe-9c7c-6584157b2de1" * }, * "item": { * "name": "leather", * "states": [ * "MANUAL" * ], * "_id": "7d2560a8-b0ab-41fe-9c7c-6584157b2de1", * "_createdDate": "2024-04-23T07:27:41.048Z" * } * }, * { * "itemMetadata": { * "originalIndex": 1, * "success": true, * "_id": "022cdce2-6d8d-4dfd-9210-4b6671539173" * }, * "item": { * "name": "shoes", * "states": [ * "HIDDEN" * ], * "_id": "022cdce2-6d8d-4dfd-9210-4b6671539173", * "_createdDate": "2024-04-23T07:27:41.048Z" * } * } * ], * "bulkActionMetadata": { * "totalSuccesses": 2, * "totalFailures": 0, * "undetailedFailures": 0 * } * } */ ``` ---