> 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 # CountModifiers # Package: items # Namespace: ModifiersService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifiers/count-modifiers.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction > **Note:** The Item API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Retrieves the number of modifiers that match a specified filter. If a filter isn't passed in the request, the endpoint returns the count of all modifiers. --- ## REST API ### Schema ``` Method: countModifiers Description: > **Note:** The Item API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Retrieves the number of modifiers that match a specified filter. If a filter isn't passed in the request, the endpoint returns the count of all modifiers. URL: https://www.wixapis.com/restaurants/menus/v1/modifiers/count Method: POST Method parameters: param name: filter | type: filter | description: Filter for counting modifiers. Return type: CountModifiersResponse - name: count | type: integer | description: Counted modifiers. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: TOO_MANY_TO_COUNT | Description: Number of modifiers exceeds the server's limit. ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.items.ModifiersService.countModifiers(options) Description: > **Note:** The Item API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Retrieves the number of modifiers that match a specified filter. If a filter isn't passed in the request, the endpoint returns the count of all modifiers. Method parameters: param name: options | type: CountModifiersOptions none - name: filter | type: object | description: Filter for counting modifiers. Return type: PROMISE - name: count | type: integer | description: Counted modifiers. Possible Errors: HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: TOO_MANY_TO_COUNT | Description: Number of modifiers exceeds the server's limit. ``` ### Examples ### countModifiers ```javascript import { itemModifiers } from '@wix/restaurants'; async function countModifiers(options) { const response = await itemModifiers.countModifiers(options); }; ``` ### countModifiers (with elevated permissions) ```javascript import { itemModifiers } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myCountModifiersMethod(options) { const elevatedCountModifiers = auth.elevate(itemModifiers.countModifiers); const response = await elevatedCountModifiers(options); } ``` ### countModifiers (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 { itemModifiers } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { itemModifiers }, // Include the auth strategy and host as relevant }); async function countModifiers(options) { const response = await myWixClient.itemModifiers.countModifiers(options); }; ``` ---