Wanted to extract job ID(abz) from below mentioned json…where name should be Loren and folder should be (abcd/pqrs)
{
“statuses” : [ {
“jobId” : “abx”,
“name” : “Suzan”,
“folder” : “abcd”,
“status” : “Ended Not OK”
}, {
“jobId” : “aby”,
“name” : “Pinacio”,
“folder” : “abcd”,
“status” : “Ended Not OK”
}, {
“jobId” : “abz”,
“name” : “Loren”,
“folder” : “abcd/pqrs”,
“status” : “Ended Not OK”,
],
“returned” : 3,
“total” : 3
}
Hi @Anil_G
Check out this thread and video
https://forum.uipath.com/search?q=Deserialize%20json%20%40ppr
Regards
Gokul
2 Likes
Hi,
As there are some syntax errors for json format in the above text, I fixed it as the following.
{
"statuses" : [ {
"jobId" : "abx",
"name" : "Suzan",
"folder" : "abcd",
"status" : "Ended Not OK"
}, {
"jobId" : "aby",
"name" : "Pinacio",
"folder" : "abcd",
"status" : "Ended Not OK"
}, {
"jobId" : "abz",
"name" : "Loren",
"folder" : "abcd/pqrs",
"status" : "Ended Not OK"
}
],
"returned" : 3,
"total" : 3
}
Then, can you try as the following?
Sample20221125-9.zip (2.6 KB)
Regards
3 Likes
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.