08-07-21 09:16 AM
If the JSONPath defined for the output parameter does not find a match in an HTTP response, the output parameter will return an empty data item/collection. If the JSONPath defined for the output parameter finds multiple possible matches in an HTTP response, an exception will be thrown in the process.
But at the same time just right under it there is a table with json path examples that returns multiple values. I'm lost now.
09-07-21 03:19 PM
09-07-21 03:33 PM
09-07-21 04:30 PM
[
{
"expand": "schema,names",
"startAt": 0,
"maxResults": 50,
"total": 2,
"issues": [
{
"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
"id": "600133",
"self": "https://",
"key": "ROBPRA-6"
},
{
"expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
"id": "600121",
"self": "https:",
"key": "ROBPRA-5"
}
]
}
]
By using $..issues[
"ROBPRA-6",
"ROBPRA-5"
]
But Blue Prism unfortunately can't return it as a string or put it in a collection. I assume that would be possible with some custom code but I have countless issues with newtonsoft.Json.dll...