> 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: wix-http-functions ## Namespace: wix-http-function-response ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/velo-only-apis/wix-http-functions/wix-http-function-response/introduction.md ## Article Content: # Introduction Using the `WixHttpFunctionResponse` object, you define an appropriate response after the handling of an incoming request. There are a number of functions you can use to create the `WixHttpFunctionResponse`, such as: + [`response()`](wix-http-functions.html#response) + [`ok()`](wix-http-functions.html#ok) + [`created()`](wix-http-functions.html#created) + [`notFound()`](wix-http-functions.html#notfound) + [`serverError()`](wix-http-functions.html#servererror) + [`badRequest()`](wix-http-functions.html#badrequest) + [`forbidden()`](wix-http-functions.html#forbidden) To define the response, set the [`body`](#body), [`headers`](#headers), and [`status`](#status) properties. > **Notes:** > + This API is only intended for use in server-to-server communications. If you use this API to set a cookie on a site visitor's browser you may no longer be in compliance with applicable data privacy regulations. > > + All of the above functions except [`response()`](wix-http-functions.html#response) always create a response object with a pre-set HTTP status code (e.g. for `ok()` this is always 200), which cannot be overridden.