> 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 # GetCatalogVersion # Package: stores # Namespace: StoresProvisionService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-versioning/get-catalog-version.md ## Permission Scopes: Read v3 catalog (PII): SCOPE.STORES.CATALOG_READ_LIMITED ## Introduction Retrieves the version of Stores Catalog installed on a site. --- ## REST API ### Schema ``` Method: getCatalogVersion Description: Retrieves the version of Stores Catalog installed on a site. URL: https://www.wixapis.com/stores/v3/provision/version Method: GET Return type: GetCatalogVersionResponse - name: catalogVersion | type: Version | description: The version of Stores Catalog installed on a site. - enum: - V1_CATALOG: Version 1 of the catalog. - V3_CATALOG: Version 3 of the catalog. - STORES_NOT_INSTALLED: Stores app is not installed. ``` ### Examples ### GetCatalogVersion ```curl ~~~cURL curl -X GET \ 'https://www.wixapis.com/stores/v3/provision/version' \ -H 'Content-type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.stores.StoresProvisionService.getCatalogVersion() Description: Retrieves the version of Stores Catalog installed on a site. Return type: PROMISE - name: catalogVersion | type: Version | description: The version of Stores Catalog installed on a site. - enum: - V1_CATALOG: Version 1 of the catalog. - V3_CATALOG: Version 3 of the catalog. - STORES_NOT_INSTALLED: Stores app is not installed. ``` ### Examples ### getCatalogVersion ```javascript import { catalogVersioning } from '@wix/stores'; async function getCatalogVersion() { const response = await catalogVersioning.getCatalogVersion(); }; ``` ### getCatalogVersion (with elevated permissions) ```javascript import { catalogVersioning } from '@wix/stores'; import { auth } from '@wix/essentials'; async function myGetCatalogVersionMethod() { const elevatedGetCatalogVersion = auth.elevate(catalogVersioning.getCatalogVersion); const response = await elevatedGetCatalogVersion(); } ``` ### getCatalogVersion (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 { catalogVersioning } from '@wix/stores'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { catalogVersioning }, // Include the auth strategy and host as relevant }); async function getCatalogVersion() { const response = await myWixClient.catalogVersioning.getCatalogVersion(); }; ``` ---