Web API: Cancel

From QPR ProcessAnalyzer Wiki
Revision as of 13:51, 16 May 2020 by Ollvihe (talk | contribs)
Jump to navigation Jump to search

The Cancel operation cancels currently running queries in the server. This can be done to improve performance if the query results are not needed. The operation does not return any data.

HTTP request header Authorization with value Bearer <access token> needs to be in place to identify the session.

Request body is a JSON array of query identifiers to be cancelled.

Url: POST /api/cancel
Content-Type: application/json;charset=UTF-8
Body:
[
  "query1", "query2"
]