This repository hosts the API documentation for IBM Planning Analytics for Microsoft Excel. For full product documentation, please visit the Knowledge Center:
Operating system: ✍️ TODO
Last upstream commit (run git log --author="Robert Lord" | head -n 1): ✍️ TODO
Browser version(s): ✍️ TODO
Ruby version (run ruby -v): ✍️ TODO
✍️ TODO write your issue here
Ref. IBM Forum link
It appears that the samples are using out-of-date values when using the REST API. In the case the REST GET request (link) the code being used is
Public Property Get OData(Server As String) As String 'OData endpoint OData = HubEndpoint + "server('" + Server + "')/api/v1" End Property
but as per the referred link on the forums it should use...
Public Property Get OData(Server As String) As String 'OData endpoint OData = "tm1/" + Server + "/api/v1" End Property
Changing the value for OData resulted in a connection being established.
Operating system: ✍️ TODO Last upstream commit (run
git log --author="Robert Lord" | head -n 1
): ✍️ TODO Browser version(s): ✍️ TODO Ruby version (runruby -v
): ✍️ TODO✍️ TODO write your issue here Ref. IBM Forum link It appears that the samples are using out-of-date values when using the REST API. In the case the REST GET request (link) the code being used is
Public Property Get OData(Server As String) As String 'OData endpoint OData = HubEndpoint + "server('" + Server + "')/api/v1" End Property
but as per the referred link on the forums it should use...
Public Property Get OData(Server As String) As String 'OData endpoint OData = "tm1/" + Server + "/api/v1" End Property
Changing the value for OData resulted in a connection being established.