
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Does Dimension support Python API?
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?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
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