QPR ProcessAnalyzer API: Difference between revisions
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
* [[Web_API:_Usersettings|usersettings]]: Save user specific settings to the server. | * [[Web_API:_Usersettings|usersettings]]: Save user specific settings to the server. | ||
* [[Web_API:_Operations/terminate|operations/terminate]]: Terminates selected operations (i.e. end tasks). | * [[Web_API:_Operations/terminate|operations/terminate]]: Terminates selected operations (i.e. end tasks). | ||
* [[Web_API:_Cancel|cancel]]: Stops currently running task in the server to save computing resources. | * [[Web_API:_Cancel|analysis/cancel]]: Stops currently running task in the server to save computing resources. | ||
In addition, there are methods for | In addition, there are methods for |
Revision as of 19:35, 23 June 2021
QPR ProcessAnalyzer API can be used to create integration with other applications and automate many operations in process mining.
QPR ProcessAnalyzer API is a JSON based API following the REST design principles. All methods (except the Token and ServerInfo) require a prior login which is performed with the Token call with username and password, and the access token is returned as a response for a successful login. The methods requiring the prior authenticated session, need to have a HTTP request header Authorization with value Bearer <access token> in place to identify the session.
Url for calling the API has the following form (replace the server DNS name with a correct one):
https://customer.onqpr.com/qprpa/api/<methodName>
Following methods are available:
- token: Login user using username and password and get a session token as a response.
- signout: Logs out a user session.
- expression/query: Runs query written using the expression language and returns result data as response.
- filters: Get filters for all models or filters for a single model.
- serverinfo: Gets some basic information about the system, such as the default UI language in whether SSO has been configured (which is needed by the UI).
- importfile: Import data into datatable from .csv, .xes or .pacm file.
- usersettings: Save user specific settings to the server.
- operations/terminate: Terminates selected operations (i.e. end tasks).
- analysis/cancel: Stops currently running task in the server to save computing resources.
In addition, there are methods for
Examples
Move Data from QPR ProcessAnalyzer to Database using PowerShell