I'm trying to create following Json from a string which is coming from an Excel
{
"RequestId": "1234",
"OrderID": "NCBTEST02082018-01",
"Assets": [{
"Field1":"1",
"Field2": "NCBTEST-01",
"Field3": "1",
"Field4": "1",
"Field5": "1",
"Field6": "1",
"Field7": "1"
}] }
I am able to create assets araay but I don't know how to add first 2 fields which are "RequestId": "1234",
and "OrderID": "NCBTEST02082018-01",
before the assets array.