Cancel a request
Cancel a request, for example the export of the data of a generic object by using the CancelRequest method.
Example
The handle of the request is -1 because the CancelRequest method applies at global level. The identifier of the request to stop is set in qRequestId.
The client sends:
{
"jsonrpc": "2.0",
"id": 3,
"method": "CancelRequest",
"handle": -1,
"params": [
3
]
}
The engine returns:
{
"jsonrpc": "2.0",
"id": 3,
"result": {}
}
The request with identifier 3 is stopped.