Does Dimension support Python API? Currently I can only use REST service to fetch contents, any API I could use to creat request using Python?
Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
Hello,
There is no Python API for Dimensions.
You can create a request using Java API, there is an example available in "[serverInstallationPath]\java_api\examples\CreateRequest.java".
Though for using from your Python app it could be easier to create a request via command line (DMLCI application), say this way:
dmcli.exe -param dmcli.param -file dmcli.cmds
where dmcli.param file contains connection parameters, say:
-user myUserID
-pass myUserPassword
-host myCMserverHost
-dbname cm_typical
-dsn dim15
and dmcli.cmds file contains the list of commands necessary for execution, say for BR type request creation:
CC "QLARIUS" "BR" /ATTRIBUTES=(Title="MyRequest")
Regards,
Alex
--
Alex Shevchenko
Sr Development Manager
Although I work for OpenText, I am speaking for myself and not for OpenText.
If you found this post useful, give it a “Like” or click on "Verify Answer" under the "More" button.