Web API for Workspace Elements: Difference between revisions

From QPR ProcessAnalyzer Wiki
Jump to navigation Jump to search
No edit summary
Line 5: Line 5:
==Methods==
==Methods==
<pre>
<pre>
POST /api/uielements/setproject/{projectid}
POST /api/uielements/setproject/{projectId}
</pre>
</pre>
Used to move projects, dashboards, models, datatables and scripts to another project. Takes as a body an array of objects, with ''id'' and ''type'' properties. The method is useful when multiple objects are moved between projects.
Moves projects, dashboards, models, datatables and scripts to another project. Takes as a body an array of objects, with ''id'' and ''type'' properties. The method is useful when multiple objects are moved between projects.


Supports also the [[Web_API_for_Models|moveLinkedDatatables]] query parameter which is applied when moving models.
Supports also the [[Web_API_for_Models|moveLinkedDatatables]] query parameter which is applied when moving models.
Line 14: Line 14:
DELETE /qprpa/api/uielements
DELETE /qprpa/api/uielements
</pre>
</pre>
Used to delete projects, dashboards, models, datatables and scripts. Takes as a body an array of objects, with ''id'' and ''type'' properties. The method is useful when multiple objects are deleted.
Deletes projects, dashboards, models, datatables and scripts. Takes as a body an array of objects, with ''id'' and ''type'' properties. The method is useful when multiple objects are deleted.


Support also the [[Web_API_for_Models|deletePermanently]] query parameter which is applied when deleting models.
Support also the [[Web_API_for_Models|deletePermanently]] query parameter which is applied when deleting models.


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

Revision as of 12:07, 9 March 2021

Workspace Elements API (a.k.a. UI element API) is used by the Workspace to

  • move multiple different types of items to another project
  • delete items (multiple different types can be deleted at the same time)

Methods

POST /api/uielements/setproject/{projectId}

Moves projects, dashboards, models, datatables and scripts to another project. Takes as a body an array of objects, with id and type properties. The method is useful when multiple objects are moved between projects.

Supports also the moveLinkedDatatables query parameter which is applied when moving models.

DELETE /qprpa/api/uielements

Deletes projects, dashboards, models, datatables and scripts. Takes as a body an array of objects, with id and type properties. The method is useful when multiple objects are deleted.

Support also the deletePermanently query parameter which is applied when deleting models.