REST API Overview
Per the post, I tried the "Downloading Log Information" example and got a result, but my impression is that parameters in the body are ignored. Whatever I define for "maxItems", "startDate" and "endDate", I get the most recent 500 (?) log entries.
This is the body in Postman (raw, JSON):
{
"value":
{
"maxItems": 10,
"startDate": 1651701600000,
"endDate": 1651761000000,
"oldestFirst": true
}
}
I also tried the syntax as in the example by using \" - but this is marked in Postman like syntax error and does not change the behavior. What is going wrong?

