Introduction

The WixHttpFunctionRequest object breaks the URL of the incoming call to an HTTP function into different parameters for easy access.

The URL of the incoming call to an HTTP function is broken into:

For premium sites, the URL of the incoming call has the following format: https://www.domain.com/_functions/myFunction/sub?q=value

  • baseUrl:     https://www.domain.com/_functions
  • path:          sub
  • query:        q=value

For free sites, the URL of the incoming call has the following format: https://user_name.wixsite.com/mysite/_functions/myFunction/sub?q=value

  • baseUrl:     https://user_name.wixsite.com/mysite/_functions
  • path:          sub
  • query:        q=value
Did this help?

baseUrl


baseUrlstringRead-only

Returns the base URL of a call to an HTTP function.

Premium sites: Premium site baseUrl

Free sites: Free site baseUrl

Get the base URL of a call to an HTTP function
JavaScript
// In http-functions.js export function use_myFunction(request) { let baseUrl = request.baseUrl; // Premium site: "https://www.domain.com/_functions" // Free site: "https://user_name.wixsite.com/mysite/_functions" }
Did this help?