I am new to groovy and need to parse JSON response. the response looks like this:
[
{
"name": "John",
"start_date": "2016-09-30",
"sort_order": 1
},
{
"name": "Tony",
"start_date": "2016-06-30",
"sort_order": 2
}
]
How can I get each object from that? would like to end up with name, start_date and sort_order for each student together.