-
IBM introduced some time ago a new Planning Analytics version that they provide as SaaS. Have you had change to look into new version and do you think tm1py could be used with it as well? It seems that this version has different authentication method and REST API url structure. In my tests authentication is based on apikey instead of familiar version 11 REST API authentication modes. Another thing that I noted is that api url is different and if I checked right, tm1py has url = '/api/v1/' hardcoded into request functions. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Here is a sample of how to use TM1py with TM1 (v11) in PAoC with TM1Service(
base_url='https://hostname.planning-analytics.ibmcloud.com/tm1/api/tm1_database_name/',
user="user",
namespace="LDAP",
password="xxxx",
ssl=True,
verify=True,
async_requests_mode=True) as tm1:
print(tm1.server.get_product_version()) But if I understand you right, you are looking for a version of TM1py that is compatible with what we call TM1 v12. |
Beta Was this translation helpful? Give feedback.
-
You can track the progress to support SaaS aka v12 here: #889 |
Beta Was this translation helpful? Give feedback.
You can track the progress to support SaaS aka v12 here: #889