Web API for Models: Difference between revisions

From QPR ProcessAnalyzer Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 35: Line 35:
GET api/models/{id}
GET api/models/{id}
</pre>
</pre>
Gets information of the model with given id. Returns the model object. If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.
Gets model entity by the model id. If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.


<pre>
<pre>
POST api/models
POST api/models
</pre>
</pre>
Creates a new empty model. Takes the model object in the body (whose read-only fields are ignored). Returns the created model object. If current user has no rights to create model, unauthorized error is returned.
Creates a new empty model. Takes the model entity in the body (read-only properties are ignored). Returns the created model entity. If current user has no rights to create model, unauthorized error is returned.


<pre>
<pre>
PUT api/models/{id}
PUT api/models/{id}
</pre>
</pre>
Updates information of the existing model with the given id. Supported query parameter is ''moveLinkedDatatables'' (boolean, true by default): flag whether to move linked data tables to the new project if model itself is moved, otherwise ignored. Takes the model object in the body (whose id should match the path parameter value and other read-only fields are ignored). If model doesn't exist, not found error is returned. If current user has no rights to modify the model, unauthorized error is returned.
Updates properties of an existing model with the given id. Supports query parameter ''moveLinkedDatatables'' (boolean, true by default), which is a flag whether to move linked data tables to the new project if model itself is moved. The method takes the model entity in the body (model id in the entity should match the model id given in url). If model doesn't exist, not found error is returned. If current user has no rights to modify the model, unauthorized error is returned.


<pre>
<pre>
DELETE api/models/{id}
DELETE api/models/{id}
</pre>
</pre>
Deletes the model with given id. Supported query parameter is ''deletePermanently'' (boolean, false by default): flag whether to delete the model permanently. If model doesn't exist, not found error is returned. If current user has no rights to delete the model, unauthorized error is returned.
Deletes a model with given id. Supports query parameter ''deletePermanently'' (boolean, false by default), which is a flag whether to delete the model permanently. If model doesn't exist, not found error is returned. If current user has no rights to delete the model, unauthorized error is returned.


<pre>
<pre>
GET api/models/export/{id}
GET api/models/export/{id}
</pre>
</pre>
Exports the model with given id to PACM format. Returns the model content as stream in PACM format (compressed). If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.
Exports the model with given id as PACM format. Returns the model content as a stream in the PACM format. If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.


<pre>
<pre>
POST /api/uielements/setproject/{projectid}
POST /api/uielements/setproject/{projectid}
</pre>
</pre>
Support also models (will be used when multiple models are moved between projects). It also should support ''moveLinkedDatatables'' query parameter (see api/models/{id} PUT).
Supports also models, and the ''moveLinkedDatatables'' query parameter (see PUT api/models/{id}).


<pre>
<pre>
DELETE /qprpa/api/uielements
DELETE /qprpa/api/uielements
</pre>
</pre>
Support also models (will be used when multiple models are deleted). It also should support ''deletePermanently'' query parameter (see api/models/{id} DELETE).
Support also models, and the ''deletePermanently'' query parameter (see DELETE api/models/{id}).


[[Category: QPR ProcessAnalyzer]]
[[Category: QPR ProcessAnalyzer]]

Revision as of 16:18, 1 November 2020

Models API is used to create models, delete models and edit model properties. Data import is not done using the models API, but data is imported directly to the datatables used by the model.

Model Entity

The models API is based on the Model entity, which has the following properties:

  • Id (integer): model id.
  • ProjectId (integer): Id of the project where the model is located. The model is moved to another project by changing this property.
  • Name (string): Model name.
  • Description (string): Model description.
  • CreatedDate (datetime): Model creation date.
  • CreatorId (integer): Model creator user id.
  • LastModifiedDate (datetime): Model last modification date.
  • LastModifierId (integer): Model last modifier user id.
  • NCases (integer): Number of cases in the model.
  • NEvents (integer): Number of events in the model.
  • NEventTypes (integer): Number of event types in the model.
  • NCaseAttributes (integer): Number of case attributes in the model.
  • NEventAttributes (integer): Number of event attributes in the model.
  • NFilters (integer): Number of filters in the model.
  • NAnalyses (integer): Number of analyses in the model.
  • Configuration (JSON object): Model configuration JSON.

The following properties in model objects can be modified: Name, Description, ProjectId and Configuration.

All object counts properties are calculated and stored to the model when the model is loaded into memory.

Methods

The models API has the following methods.

GET api/models GET

Gets a list of all not deleted models in the system (if no parameter is provided). Supports optional query parameter projectId which is project id where to get models from.

GET api/models/{id}

Gets model entity by the model id. If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.

POST api/models

Creates a new empty model. Takes the model entity in the body (read-only properties are ignored). Returns the created model entity. If current user has no rights to create model, unauthorized error is returned.

PUT api/models/{id}

Updates properties of an existing model with the given id. Supports query parameter moveLinkedDatatables (boolean, true by default), which is a flag whether to move linked data tables to the new project if model itself is moved. The method takes the model entity in the body (model id in the entity should match the model id given in url). If model doesn't exist, not found error is returned. If current user has no rights to modify the model, unauthorized error is returned.

DELETE api/models/{id}

Deletes a model with given id. Supports query parameter deletePermanently (boolean, false by default), which is a flag whether to delete the model permanently. If model doesn't exist, not found error is returned. If current user has no rights to delete the model, unauthorized error is returned.

GET api/models/export/{id}

Exports the model with given id as PACM format. Returns the model content as a stream in the PACM format. If model doesn't exist, not found error is returned. If current user has no access to the model, unauthorized error is returned.

POST /api/uielements/setproject/{projectid}

Supports also models, and the moveLinkedDatatables query parameter (see PUT api/models/{id}).

DELETE /qprpa/api/uielements

Support also models, and the deletePermanently query parameter (see DELETE api/models/{id}).