try {

var content = "{\"u_id\" : \""+ id +"\", \"u_request_name\":\"" + name + "\", \"u_type\":\"" + type + "\",\"u_request_ip_range\":\"" + ip_range + "\"}";

var restMsg = new sn_ws.RESTMessageV2();

restMsg.setBasicAuth("REST user", "********");

restMsg.setHttpMethod("post");

restMsg.setEndpoint("https://deloittepartnerhkdemo1.service-now.com/api/now/table/u_wsdl_ddome_test");

restMsg.setRequestBody(content);

//override authentication profile

//authentication type ='basic'/ 'oauth2'

//r.setAuthentication(authentication type, profile name);

var response = restMsg.execute();

var responseBody = response.getBody();

var httpStatus = response.getStatusCode();

if(httpStatus == 201){

var parser = new JSONParser();

var parsed = parser.parse(responseBody);

var result = parsed.result;

for(var i=0; i