Retrieve OrganizationServiceSettings via SOAP
Content
I'm having a difficult time 'get'ing the OrganizationServiceSetting data.
I've done similar with getting the custom fields but when I get the populated object back, the OrganizationServiceSettings is always null and the tracking variable is set to false.
There must clearly be something I'm missing, any direction would be greatly appreciated.
Version
Connect Web Services 17dCode Snippet
ID id = new ID(); id.setId(orgid); Organization org = new Organization(); org.setID(id); org.setServiceSettings(new OrganizationServiceSettings()); orgs[0] = org; try { RNObjectsResult getResults = _rightnow.getService().get(orgs, _rightnow.getGetOptions(), _rightnow.getClientInfo(), apiAccessReqeustHeader); orgs = getResults.getRNObjects(); org = (Organization) orgs[0]; } catch (RemoteException | RequestErrorFault | APIAccessErrorFault | UnexpectedErrorFault | ServerErrorFault | RequestErrorFaultDetail e) { e.printStackTrace(); }
0