I have JSON string like below :
{
"ConfigurationJsonResult":
[
2246,
2247,
2248,
2249,
2250,
2251,
2252,
2253,
2254,
2255
]
}
My problem is i want to get 1st value i.e 2246 using xPath.
I have tried using /ConfigurationJsonResult[1] but it gives me [2246,2247.....2255], i just want 2246. How to achieve it.
JSONPathaccording to the link and it is notXPath