Jul 07, 2021 02:12 PM
I wanted to make a Siri Shortcut that lets me upload a screenshot to Airtable.
In my Airtable I have these fields:
I got pretty far but either the webhook doesn’t allow images or I’m doing something wrong.
When I run the shortcut as text only, it works and the descriptive text is inserted correctly.
Is this ever going to work or have I hit a dead end?
Thanks for your help!
Solved! Go to Solution.
Jul 08, 2021 09:30 AM
Welcome to the community, @tara_devlin! :grinning_face_with_big_eyes: Airtable’s webhook trigger only accepts JSON data as input, which explains why files won’t work. However, if you can find a way to temporarily host the image on another server/service, you could send the URL of the hosted image in the JSON data to the webhook. An Update record
action could then insert the URL of the image into the attachment field, and Airtable will grab the image file from the URL and attach it.
Jul 08, 2021 09:30 AM
Welcome to the community, @tara_devlin! :grinning_face_with_big_eyes: Airtable’s webhook trigger only accepts JSON data as input, which explains why files won’t work. However, if you can find a way to temporarily host the image on another server/service, you could send the URL of the hosted image in the JSON data to the webhook. An Update record
action could then insert the URL of the image into the attachment field, and Airtable will grab the image file from the URL and attach it.