How to parse Json in Zoho Creator

How to parse Json in Zoho Creator

I have a huge json which i get from crm sales order . I have to parse that json and upload that record into zoho reports. Is there any way in creator to parse json. 
{
    "response": {
        "result": {
            "SalesOrders": {
                "row": [
                    {
                        "no": "1",
                        "FL": [
                            {
                                "content": "15 Taco Bar - Fabio 5/12",
                                "val": "Subject"
                            },
                            {
                                "content": "Emily Fabio",
                                "val": "Contact Name"
                            },
                            {
                                "content": "Confirmed for Delivery",
                                "val": "Status"
                            },
                            {
                                "content": "Chaska Private Parties",
                                "val": "Account Name"
                            }
                        ]
                    }
                ]
            }
        },
        "uri": "/crm/private/json/SalesOrders/getRecords"
    }
}

jsonstring=jsondata.toString(); 
    resp1=remove(jsonstring,"{\"response\":{\"result\":{\"Potentials\":{\"row\":");
    list={"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "15"};       
    jsonmap = map();
    jsonmap=jsonstring.toMap(); 
    jsonlist=jsonstring.toJSONList();                               
    address=jsonmap.get("Origin Address");
    info address;
    for each index j in list 
    {
        name = jsonstring.getJSON("Account Name");
info name; }
Please tell me how can i do this.