I have a very simple RESTlet ``` function doGe...
# suitescript
h
I have a very simple RESTlet
Copy code
function 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.