In the camunda rest api is there a way to delete all the process instance variables in one go.
I thought I read some documentation that said you could do it using...
DELETE http://localhost:8080/contextRoot/rest/engine/default/process-instance/{id}/variables
But when I try that I get a ...
{
"timestamp": 1479705176075,
"status": 405,
"error": "Method Not Allowed",
"message": "Method Not Allowed",
"path": "/contextRoot/rest/engine/default/process-instance/14/variables"
}
If I add a variable id I am able to delete one by one but that's not what I'm after.
thanks