stalbert
04/25/2018, 5:15 AM/**
* main script entry point
* @param request
* @param response
*/
function onStart (request: nlobjRequest, response: nlobjResponse) {
const body = request.getBody() // body will contain the JSON/XML sent from webhook
response.setContentType('XMLDOC')
response.write('some response to the webhook')
}
ganoo7
04/25/2018, 5:01 PMstalbert
04/25/2018, 5:06 PM