Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Body is EMPTY when Requesting Hubspot URL from NetSuite
Given the following code:
var url = 'https://api.hubapi.com/contacts/v1/contact/vid/1/profile?hapikey=test';
var response = nlapiRequestURL(url, null, {'content-type': 'application/json'});
# undefined
response.getBody()
# ""
response.body
# ""
I am expecting at least to get the same output as I get when visiting the page from the browser:
{"status":"error","message":"This hapikey (test) doesn't exist!","correlationId":"eea7ee1c-8694-43d9-9212-ffc2e0ee237e","requestId":"9713b313bba74c4c98c111fc589294c0"} Instead the body is an empty string. I had the same result with SS2.0. All my other testing with REST tools shows a valid JSON object. Is NetSuite being blocked from this service? Anyone have a solution to get around this?