> 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 # GetMyPermissions # Package: collectionManagement # Namespace: DataPermissionsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/cms/collection-management/data-permissions/get-my-permissions.md ## Permission Scopes: Manage Data Collections: SCOPE.DC-DATA.DATA-COLLECTIONS-MANAGE ## Introduction Retrieves the current user's permissions for the specified data collection. --- ## REST API ### Schema ``` Method: getMyPermissions Description: Retrieves the current user's permissions for the specified data collection. URL: https://www.wixapis.com/wix-data/v1/permissions/current Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: dataCollectionId Method parameters: query param name: dataCollectionId | type: dataCollectionId | description: GUID of the collection for which to check the current user's permissions. | required: true Return type: GetMyPermissionsResponse - name: itemRead | type: boolean | description: Whether the current user can read items from the collection. - name: itemInsert | type: boolean | description: Whether the current user can create new items in the collection. - name: itemUpdate | type: boolean | description: Whether the current user can update existing items in the collection. - name: itemRemove | type: boolean | description: Whether the current user can remove items from the collection. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: WDE0025 | Description: Returned when the specified data collection isn't found. Learn more about [Wix Data error codes](https://dev.wix.com/docs/rest/business-solutions/cms/wix-data-error-codes.md). ``` ### Examples ### Get current user's permissions ```curl curl -X GET 'https://www.wixapis.com/wix-data/v1/permissions/current?data_collection_id=my-first-collection' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.collectionManagement.DataPermissionsService.getMyPermissions(dataCollectionId) Description: Retrieves the current user's permissions for the specified data collection. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: dataCollectionId Method parameters: param name: dataCollectionId | type: string | description: GUID of the collection for which to check the current user's permissions. | required: true Return type: PROMISE - name: itemRead | type: boolean | description: Whether the current user can read items from the collection. - name: itemInsert | type: boolean | description: Whether the current user can create new items in the collection. - name: itemUpdate | type: boolean | description: Whether the current user can update existing items in the collection. - name: itemRemove | type: boolean | description: Whether the current user can remove items from the collection. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: WDE0025 | Description: Returned when the specified data collection isn't found. Learn more about [Wix Data error codes](https://dev.wix.com/docs/rest/business-solutions/cms/wix-data-error-codes.md). ``` ### Examples ### getMyPermissions ```javascript import { permissions } from '@wix/data'; async function getMyPermissions(dataCollectionId) { const response = await permissions.getMyPermissions(dataCollectionId); }; ``` ### getMyPermissions (with elevated permissions) ```javascript import { permissions } from '@wix/data'; import { auth } from '@wix/essentials'; async function myGetMyPermissionsMethod(dataCollectionId) { const elevatedGetMyPermissions = auth.elevate(permissions.getMyPermissions); const response = await elevatedGetMyPermissions(dataCollectionId); } ``` ### getMyPermissions (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 { permissions } from '@wix/data'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { permissions }, // Include the auth strategy and host as relevant }); async function getMyPermissions(dataCollectionId) { const response = await myWixClient.permissions.getMyPermissions(dataCollectionId); }; ``` ---