Seems like I am missing something simple, anyone have any ideas???
Code: Select all
/*
MyJSON:
{
"getallpricesresult": {
"items": {
"item": {
"itemid": "ItemA",
"description”: "Test Item A",
"upc": "1234567890123",
"currenteffectivedate": "9/1/2017"
"currentprice": "26.00",
"nexteffectivedate": "11/1/2017",
"nexteffectiveprice": "28.00"
}
"item": {
"itemid": "ItemB",
"description”: "Test Item B",
"upc": "1234567890124",
"currenteffectivedate": "9/1/2017"
"currentprice": "29.00",
"nexteffectivedate": "11/1/2017",
"nexteffectiveprice": "24.00"
}
"item": {
"itemid": "ItemC",
"description”: "Test Item C",
"upc": "1234567890125",
"currenteffectivedate": "9/1/2017"
"currentprice": "29.00",
"nexteffectivedate": "",
"nexteffectiveprice": ""
}
}
}
}
*/
LabelToVar>MyJSON,sJSON
JSONParse>sJSON,items,result1
JSONParse>sJSON,itemid,result2
JSONParse>sJSON,Item[2].UPC,result3