My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Comments
-
Check your NS_HOST address is correct. One of the best methods is to use getDataCentersUrls to get the correct NS_HOST address. Example : $params = new GetDataCenterUrlsRequest(); $params->account = NS_ACCOUNT; $response = $service->getDataCenterUrls($params); Then when assigning your NS_HOST get it from :…
-
Change the line $request = new JobMilestonesList(); to $request = new GetRequest(); Full code would be : $request = new GetRequest(); $request->baseRef = new RecordRef(); $request->baseRef->internalId = "18076"; $request->baseRef->type = "job"; $getResponse = $service->get($request); echo "<pre>"; print_r($getResponse);…