I am experimenting with using the Create Blob Action as an alternatives to my WebApi that successfully uploads photos to our Azure Blog storage.
Here's the swagger node that defines the photo parameter in my WebApi:
"parameters": [
{
"name": "file",
"in": "formData",
"required": true,
"x-ms-media-kind": "image",
"type": "file"
},
I added an icon to the Photo Gallery in my PowerApp and attached the flow using Create Blob. I passed ThisItem.Name and ThisItem.Photo as the two args to the Flow. ThisItem.Photo is also the value passed to my working WebApi.
But when i check blob storage, i have a text value (basically a blob ID like this: blob:16D12A9E-080F-48A7-A9D7-F169BFD41051) instead of an image.
Can we use the Create Blob action for storing photos? Or is there another Action that does what i need?