Hello everyone, how are you?
I found a solution here in the forum to help with faster conversion of data from CSV to Excel using the Send an HTTP Request method.
While implementing the solution, I managed to get it working correctly; however, when I published the app, other users encountered errors with the flow, whereas it worked fine when I executed it on my own machine.
The flow was set up like this: I created the file in OneDrive, created the table inside it, and used the request with POST using the following URI:
The error that occurs when others run the flow on their machines is:
Failure in 'Create Table' action: The resource could not be found. clientRequestId: d775f689-8566-4d86-802e-5668cd094901 serviceRequestId: 135fa759-7a41-4fab-9f83-62eb53a9edde.
The flow runs smoothly up until the "Create File" part, which works correctly, but it encounters this error at the "Create Table" part.
Could someone help me with this issue?
I tried solutions such as creating the file in SharePoint instead of OneDrive, and using Send an HTTP Request to SharePoint, but I haven’t been able to get the URI to work.
The data that im trying to send to the table is pretty simple is just
{
"values":@{body('Select')}
}
Thanks in advance for any help!