> 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 # CreateFolder # Package: collectionManagement # Namespace: CollectionFolderService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/cms/collection-management/folders/create-folder.md ## Permission Scopes: Manage Data Collections: SCOPE.DC-DATA.DATA-COLLECTIONS-MANAGE ## Introduction Creates a folder. --- ## REST API ### Schema ``` Method: createFolder Description: Creates a folder. URL: https://www.wixapis.com/wix-data/v1/folders Method: POST Method parameters: param name: folderDetails | type: FolderDetails - name: name | type: string | description: Folder name as it appears in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-collection-folders). - name: description | type: string | description: Folder description. Return type: CreateFolderResponse - name: folder | type: Folder | description: Created folder. - name: id | type: string | description: Folder GUID. Automatically generated by Wix. The GUID field is empty for the root folder. - name: name | type: string | description: Folder's name as displayed in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-collection-folders). `name` is empty for the root folder. - name: description | type: string | description: Folder description. - name: folders | type: array | description: Folders nested in the current folder. Only the root folder may contain other folders. - name: collectionReferences | type: array | description: Collection references in the current folder. - name: collectionName | type: string | description: Collection's name as displayed in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-creating-a-collection). - name: folderId | type: string | description: GUID of the folder that contains the collection reference. Omitted if the collection reference is in the root folder. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FOLDER_NOT_FOUND | Description: Couldn't find the folder. ``` ### Examples ### Create a folder ```curl curl -X POST https://wixapis.com/autocms/v1/folders \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "parentFolderId": null, "folderDetails": { "name": "My Collections", "description": "" } }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.collectionManagement.CollectionFolderService.createFolder(options) Description: Creates a folder. Method parameters: param name: options | type: CreateFolderOptions none - name: folderDetails | type: FolderDetails | description: Folder details. - name: name | type: string | description: Folder name as it appears in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-collection-folders). - name: description | type: string | description: Folder description. Return type: PROMISE - name: folder | type: Folder | description: Created folder. - name: _id | type: string | description: Folder GUID. Automatically generated by Wix. The GUID field is empty for the root folder. - name: name | type: string | description: Folder's name as displayed in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-working-with-collection-folders). `name` is empty for the root folder. - name: description | type: string | description: Folder description. - name: folders | type: array | description: Folders nested in the current folder. Only the root folder may contain other folders. - name: collectionReferences | type: array | description: Collection references in the current folder. - name: collectionName | type: string | description: Collection's name as displayed in the [CMS](https://support.wix.com/en/article/cms-formerly-content-manager-creating-a-collection). - name: folderId | type: string | description: GUID of the folder that contains the collection reference. Omitted if the collection reference is in the root folder. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FOLDER_NOT_FOUND | Description: Couldn't find the folder. ``` ### Examples ### createFolder ```javascript import { folders } from '@wix/autocms-folders-service'; async function createFolder(options) { const response = await folders.createFolder(options); }; ``` ### createFolder (with elevated permissions) ```javascript import { folders } from '@wix/autocms-folders-service'; import { auth } from '@wix/essentials'; async function myCreateFolderMethod(options) { const elevatedCreateFolder = auth.elevate(folders.createFolder); const response = await elevatedCreateFolder(options); } ``` ### createFolder (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 { folders } from '@wix/autocms-folders-service'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { folders }, // Include the auth strategy and host as relevant }); async function createFolder(options) { const response = await myWixClient.folders.createFolder(options); }; ``` ---