Skip to content

ZengineHQ/zn-backend-get-service-url

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zn-backend-get-service-url

Helper module for getting the absolute base URL to the backend service endpoint. Includes the workspace id context where the plugin is currently running. Does not include query params or any additional path that the service may add.

Example: https://plugins.zenginehq.com/workspaces/123/myPluginNamespace/myServiceName

Installation

npm i @zenginehq/backend-get-service-url --save

Usage

const $getServiceUrl = require('@zenginehq/backend-get-service-url');

exports.run = function(eventData) {

    const baseUrl = $getServiceUrl(eventData.request);
    
    // ...

};