> 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 # Method name: response(options: WixHttpFunctionCustomResponseOptions) # Method package: wixHttpFunctions # Method menu location: wixHttpFunctions --> response # Method Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-http-functions/response.md # Method Description: Returns a response populated with the information from the options parameter. The `response()` function creates a custom response built with the information passed to the `options` parameter in a `WixHttpFunctionCustomResponseOptions` object. Use the `response()` function to create a response to return from an HTTP function. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Create a response ```javascript // In http-functions.js import {response} from 'wix-http-functions'; export function use_myFunction(request) { return response(); } ``` ## Create a response ```javascript // In http-functions.js import {response} from 'wix-http-functions'; export function use_myFunction(request) { let options = { status: 418, body: { "key1": "value1", "key2": "value2" }, headers: { "Content-Type": "application/json" } }; return response(options); } ``` ---