Good Afternoon,
@eliotcole
Thank you for the response in the older thread:
https://powerusers.microsoft.com/t5/Building-Flows/How-to-store-parsed-json-in-text-file/m-p/1671694#M185482
I am trying to take the output from a parse JSON step and create a .txt file.
Here is my full Schema. So not complicated at all and contains just a few items.
{
"type": "object",
"properties": {
"Done": {
"type": "object",
"properties": {
"WasabiFile": {
"type": "object",
"properties": {
"Id": {
"type": "string"
},
"FileName": {
"type": "string"
},
"Contents": {
"type": "string"
}
}
}
}
}
}
}
Example result would look something like this:
{
"Done": {
"WasabiFile": {
"Id": "bd764a5f-f12c-4f34-aa2d-65cd428a5461",
"FileName": "Rear Door Inspection 1.png",
"Contents": "/9j/4AAQSk....(400,000 characters)
Where "Contents" is a string variable representing an image in BASE64 format.
My flow thus far looks like this. Bear in mind, I am constructing this in a Power BI Report using its Power Automate visual.

Need to know what the next step in my flow should be in order to create what I think should be a text file.
Any help or further guidance would be much appreciated.
Thanks and Best Regards,