Tadabase API - Does not save files to table's

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:

```

Hi @omerz7

Using the Tadabase API and attaching a file without converting it to the base data will not work. You will have to use an external platform, such as make to be able to use the base data of the file to attach it to the attachments field. Or you would have to use the full URL to attach it to an attachment field.

related question I am using a external esig software and its webhook posts a URL (not base 64 encoded file)

So I would need to use something like make.com to handle this scenario ?

i.e. catch the webhook and download the pdf and upload to tadabase ?

tks for advice

Noel