Integration Main Module
The integration.js file is the main entry point to your integration on the Polarity server
Directory Structure
sample-integration/
└── integration.jsSummary
function doLookup(entities, options, cb){
cb(null, []);
}
module.exports = {
doLookup: doLookup
}Method Hooks
Last updated