Hello everyone,
I am getting a Base64 file URL from Dataverse table via Power Automate flow.
I'm trying to returned the value as json format to Power Apps.
Creating a collection to see the returned value from Power Apps:
(
* Alternatively, I have tried the PowerFX formula using directly Table() function, but does not worked as expected as well
ClearCollect(
col_draft_files,
Table(ParseJSON(FindUploadFileUrl.Run(temp_process_id).upload_file_path))
);
)
When I tried to check the value within the collection that I collect, showing a question mark instead of the expected base64 file URL.
When I tried to check it directly from Power Automate outputs. The result is correct, but the base64 string is too long. I'm just curious about that whether the problem reason depends on that?
How to handle this issue?
Thanks in advance
Hi @v-xiaochen-msft ,
When I tried to add response action getting this error message:
Flow save failed with code 'ActionSchemaInvalid' and message 'The schema definition for action with status code '200' is not valid.
Actually, it should works because the provided scheme is correct. path_string is a array variable. ExpenseID and file just append to this variable.
Any idea?