how to read a .json file
You can use Deserialize-json activity to read the file
Check out the XAML file
Hi,
First read json file using ReadTextFile activty.
Next deserialize json string to json object using Deserialize Json activity.
It’s necessary to install WebApi package to use DeserializeJson actiivty from MangePackage.
Regards,
@Yoichi @Gokul001
“{
‘fruit’: ‘Apple’,
‘size’: ‘Large’,
‘color’: ‘Red’
}”
how can i update size and color as large and red keeps changing
@Yoichi if i am reading saving back in same .json file how to do that
api is this
{
“store”: [
{
‘fruit’: ‘Apple’,
‘size’: ‘Large’,
‘color’: ‘Red’
QTY: [
]
{
}
}}
Hi,
The above seems invalid json format. Can you share whole the json string as txt file?
Regards,
removedd…
removed
@Yoichi what i need to do to update endid , sku
Hi,
Give it a try
Jo("Store")(0)("enduser")(0)("endId")="999"
Jo("Store")(0)("enduser")(0)("Pro")(0)("sku")="Orange"
Sample20221215-6v3.zip (3.3 KB)
Regards,
Hi,
Can you clarify your expected output?
Regards,
@Yoichi is there any way that we can find out how many end user are there ?
Jo(“Store”)(0)(“enduser”)(4)(“endId”)=“999”
ex. (“enduser”)(4)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.