Can not access history detail via REST

When trying to use the REST API POST /history/detail to access process detail, I got always the response:

405 Method Not Allowed

Is there here any special permission setup for this particular REST API?

You’re using a POST call when you should be using a GET
Check out the docs for more details: https://docs.camunda.org/manual/7.9/reference/rest/history/detail/

1 Like

If you send a POST to get a list, and you will use the POST Methode, you have to send a empty object in the Body. Otherwise use the GET Methode.

According to the API reference, for /history/detail there is both a GET and a POST method.

The doc for the POST method can be found here https://docs.camunda.org/manual/7.8/reference/rest/history/detail/post-detail-query/

Can it be that the POST method is documented but not actually implemented?