- 
    Type:Feature Part 
- 
    Resolution: Fixed
- 
    Priority:L3 - Default 
- 
    Affects Version/s: None
- 
    Component/s: backend
AT:
- The evaluate report by id endpoint uses POST in order to accept an array of filters as payload
- The structure of the filters passed is identical to normal filters already saved in the report
- Filters specified this way are added to the existing filters for the report
- If a filter is incompatible with the report, the filter is discarded (e.g. instance state filter for dmn report)
- The change is documented in confluence
POST /api/report/:id/evaluate
payload:
{
  filter: [
   {...} // same structure as filters defined in the report
 ]
}