Hi everyone, im encountering this issue a few times in the last week.
I have automations that create a file in my server, than use tadabase API to try and upload it, the response status is 200, response message is “The record has been successfully saved”, BUT the file doesn’t appear in the data-table.
Anyone else encountering this?
my request looks like this:
```
curl --request POST
–url https://api.tadabase.io/api/v1/data-tables/{{data-table}}/records/{{record_id}}
–header ‘Content-Type: multipart/form-data’
–header ‘X-Tadabase-App-Key: {{myAppKey}}’
–header ‘X-Tadabase-App-Secret: {{myAppSecret}}’
–header ‘X-Tadabase-App-id: {{myAppId}}’
–cookie ‘AWSALB=UMbWzjYDzIFSJLYVBgT7KSA5zDkNbKWmFh0TClS%2FVYs0oQ7v%2BHPyhCfKjIiN2PeI4y4iCB2EgC32cPxFEdNVuaZWK57Exk8Im9R7qqT4OFf1uzXgCQTbYr3EKD7P; AWSALBCORS=UMbWzjYDzIFSJLYVBgT7KSA5zDkNbKWmFh0TClS%2FVYs0oQ7v%2BHPyhCfKjIiN2PeI4y4iCB2EgC32cPxFEdNVuaZWK57Exk8Im9R7qqT4OFf1uzXgCQTbYr3EKD7P’
–form ‘field_358=@C:\Users\somefilepath.csv’
in data builder:
```

