Discussions
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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?