An Azure service that automates the access and use of data across clouds without writing code.
@AFWright In your output I can see your output have the json value which has array of value.
So to get the value for username field you need to define the postion for which you want to retrive the value in array.
For testing I have used your json output and define it in the string variable and used the output of the string variable to get the username field. I have converted the string to array first then get the first element of value and then get the username value. You can refer to functions in expressions for Azure Logic Apps for different expression that are supported.
json(variables('myData')).value[0].username
So according to your requirement to can iterate through the array list to get the desire output.