> 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 ## Resource: webMethod() ## Article: webMethod() ## Article Link: https://dev.wix.com/docs/sdk/core-modules/web-methods/web-method.md ## Article Content: # webMethod() Defines a backend method that can be called from the frontend. The `webMethod()` method is a wrapper used to export methods from backend code that can be called from the frontend. The `permissions` parameter is used to define which site visitors have permission to call the method produced by `webMethod()`. Import the `Permissions` enum from `@wix/web-methods` to define the permissions.
Caution: Be careful when selecting a permission, as exposing a method with the wrong permissions can create security risks.The `options` parameter contains the `cache` object which allows you to temporarily store the return values from web methods on Wix's infrastructure. When there are significant updates made to your site's data, call [Invalidate Cache](https://dev.wix.com/docs/sdk/backend-modules/cache/cache/invalidate-cache.md) to clear caches, ensuring your site remains up to date for your visitors.
Important: The web method caching feature is currently only supported for developing sites.Web methods must be defined in a file: - With a `.web.js` extension when developing [sites](https://dev.wix.com/docs/develop-websites/articles/getting-started/about-developing-websites.md), or apps in [Wix Blocks](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/wix-blocks/about-wix-blocks.md). - With a `.web.ts` extension when developing apps using the [Wix CLI](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/wix-cli/supported-extensions/backend-extensions/web-methods/add-web-method-extensions-with-the-cli.md). ## Method Declaration ```ts function webMethod(permissions: Permissions, webFunction: Function, options: Options): Function; ``` ## Parameters | Name | Type | Description | | :------------------- | :-------------- | :-------------------------------------------------------------------- | | `permissions` | `Permissions` | Permissions needed to call the method in frontend code.