Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
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?