> 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 # GetStorageQuota # Package: channels # Namespace: CommunicationChannelsMedia # Method link: https://dev.wix.com/docs/api-reference/crm/communication/channels/communication-channels-media/get-storage-quota.md ## Permission Scopes: Manage Inbox Messages: SCOPE.DC-INBOX.MANAGE-MSGS ## Introduction Retrieves a Wix user's storage quota information. This method returns the total quota limit and current usage in bytes. --- ## REST API ### Schema ``` Method: getStorageQuota Description: Retrieves a Wix user's storage quota information. This method returns the total quota limit and current usage in bytes. URL: https://www.wixapis.com/v1/storage-quota Method: GET Return type: GetStorageQuotaResponse - name: totalQuota | type: string | description: Total storage quota limit in bytes. - name: totalUsage | type: string | description: Current storage usage in bytes. ``` ### Examples ### Get the media storage quota ```curl curl -X GET \ 'https://www.wixapis.com/communication-channels-media/v1/storage-quota' \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.channels.CommunicationChannelsMedia.getStorageQuota() Description: Retrieves a Wix user's storage quota information. This method returns the total quota limit and current usage in bytes. Return type: PROMISE - name: totalQuota | type: string | description: Total storage quota limit in bytes. - name: totalUsage | type: string | description: Current storage usage in bytes. ``` ### Examples ### getStorageQuota ```javascript import { communicationChannelsMedia } from '@wix/comm-channels-media'; async function getStorageQuota() { const response = await communicationChannelsMedia.getStorageQuota(); }; ``` ### getStorageQuota (with elevated permissions) ```javascript import { communicationChannelsMedia } from '@wix/comm-channels-media'; import { auth } from '@wix/essentials'; async function myGetStorageQuotaMethod() { const elevatedGetStorageQuota = auth.elevate(communicationChannelsMedia.getStorageQuota); const response = await elevatedGetStorageQuota(); } ``` ### getStorageQuota (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 { communicationChannelsMedia } from '@wix/comm-channels-media'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { communicationChannelsMedia }, // Include the auth strategy and host as relevant }); async function getStorageQuota() { const response = await myWixClient.communicationChannelsMedia.getStorageQuota(); }; ``` ---