How to split/parse json response from zoho crm api using asp
Hi,
I am getting below json response from zoho CRM API. But i need your help to split individual variables like content, val from this response.
- // JavaScript Document
- {
- "response":
- {
- "result":
- {
- "SalesOrders":
- {
- "row":
- {
- "no":"1",
- "FL":
- [
- {
- "content":"38660000015546081",
- "val":"SALESORDERID"
- },
- {
- "content":"38660000015546083",
- "val":"SO Number"
- },
- {
- "content":"Product Name",
- "val":"Subject"
- },
- {
- "content":"2016-01-11",
- "val":"Due Date"
- },
- {
- "content":"Delivered",
- "val":"Status"
- }
- ]
- }
- }
- },
- "uri":"/crm/private/json/SalesOrders/searchRecords"
- }
- }