hi,
Your setup is almost correct. The missing piece is how Mendix handles arrays and nested objects in a Consumed REST response.
issues[]issue has nested data under fieldsIssue (0..*)Issue → association → Fields (1..1 or 0..1)Issue objects by association from RootIssue/keyIssue/Fields/SummaryIssue/Fields/Status/Name (if modeled)You don’t “index” JSON in Mendix.
You navigate associations created by the import mapping.
Once the Issue objects are returned as a list, the grid will work normally.
Do not try to pass JSON strings or raw response data to the UI. Always let the Import Mapping create objects and work with those.
The Import Mapping returns the Root object, not the Issue list. Jira issues are created as child objects under Root → Issues, so binding the grid to Root will not show issue fields.
What you need to do:
Also, if you don’t map the fields under issues → fields (summary, status, etc.), they won’t be available in the grid.
So the key point is: the grid must use the Issue list, and the Issue entity must have the required fields mapped.