Multi-file API Update

Continuing the discussion from Tuesdays with Tadabase - September 19th 2023:

Hi, In this announcement the below was advised, will this resolve the Webhooks and multiple attacments I raised here and when will this be out?: Incoming Webhook with Attachments

  • Saving multiple files in an API is coming :soon:.

Thanks

Dan

Hi,

Any progress on this?

Thanks

Dan

Hi,

Has this been delivered, is it “soon”, and will this resolve the Webhook use of the Attachment Field now?

Thanks

Dan

We ended up scrapping this promise due to a variety of reasons including issues with file upload sizes (limits on the POST body request our servers can accept).

Can you elaborate a bit on what issues you’re having with Webhooks and attachment fields? i’m not aware of any issues here.

Thanks,
Moe

Hi Moe,

I see the below in the recent updates, so I checked again:

  • Fixed bug with Tadabase API → Save multiple attachments with URL (DEV-7391)

Basically I am using the Webhook to save the files from ZOHO to TB when a ZOHO form is submitted, ZOHO has 3 different types but with JSON and using its storage management it sends the url to the files uploaded as below, but as below the output to TB from the catcher webhook doesnt add them:

Incoming Webhook Request:

{
“field_168”: “DY Test NEW 5”,
“field_173”: [
“https://domain-my.sharepoint.com/personal/myarea/Documents/ZOHOFORMS/DY%20Web%20Hook%20TB%20Test2/image1.png”,
“https://domain-my.sharepoint.com/personal/myarea/Documents/ZOHOFORMS/DY%20Web%20Hook%20TB%20Test2/image2.png”
],
“field_172”: [
“https://domain-my.sharepoint.com/personal/myarea/Documents/ZOHOFORMS/DY%20Web%20Hook%20TB%20Test2/file1.pdf”,
“https://domain-my.sharepoint.com/personal/myarea/Documents/ZOHOFORMS/DY%20Web%20Hook%20TB%20Test2/file2.pdf”
]
}

But the Outgoing Request is:

[
{
“field_168”: “DY Test NEW 5”
}
]

field_172 and field_173 are both “Files” type.

BR

Dan