functionName


functionNamestringRead-only

Returns the function name of a call to an HTTP function.

Premium sites: Premium site URL

Free sites: Free site URL

Get the function name of a call to an HTTP function
JavaScript
// In http-functions.js export function use_myFunction(request) { let functionName = request.functionName; // myFunction }
Did this help?