Problem with GET /metrics/{metrics-name}/sum and Query Parameters

Hi,

I try to get the sum of job-failed metrics in time interval but getting error msg

Request
GET /engine-rest/metrics/job-failed/sum?startDate=2015-01-01T00:00:00.000+020

Response:

{
    "type": "InvalidRequestException",
    "message": "Cannot convert value \"2015-01-01T00:00:00.000 0200\" to java type java.util.Date"
}

We are using camunda v7.11.0-ee

Hey @josips1,

you will have to escape the URL as + is a reserved character. Use %2B instead e.g. (metrics/job-failed/sum?startDate=2019-12-04T16:24:17.000%2B0100)

Thx. Now its working