Clarification on UiPath Web API GET

Hi All,

While performing a GET request using UiPath HTTP request activity the generated output is not displaying elements within [ ] -square brackets.

Example of the GET request output from Postman:
{
“Something”: 100,
“Additional_Details”: [
{
“SomethingColor”: “red”,
“SomethingBig”: “Yes”,
}
]
}

Example of the GET request output from UiPath:
{
“Something”: 100,
“Additional_Details”: [ ]
}

Is this a limitation within UiPath or Is there a solution to get the full output?

hi @sajeev

Shouldn’t be the case, there’s no such limitation, you should be able to get the data from Additional_Details as well, can you try to write your API Response into a Text file to check it.

Thanks