Hubert
04/18/2018, 8:04 PMfunction doGet(requestParams) {
log.debug('GET - request body:', JSON.stringify(requestParams));
log.debug('run by:', JSON.stringify(runtime.getCurrentUser()));
return "Hello World!!! " + JSON.stringify(runtime.getCurrentUser()) + "/ " + JSON.stringify(requestParams);
}
I am trying to test it with POSTMAN with TBA for 2 users, the problem is that for one user I am getting response with 200 status but it is empty and I do not see that call on back-end log.