Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Jun 22, 2023 01:19 AM
To explain my project, I have two tables :
- A "Movies" table that stores a list of movies, one of the fields in this table is an Attachment field that contains the movie poster image.
- A "Catalogs" table that has a link to the "Movies" table.
The goal of my project is to create catalogs by selecting the movies I want to include using the link to field, and then, by clicking a button, launch a Make scenario that retrieves the selected movie list and generates a catalog in PDF format using Eledo. The data insertion into Eledo is done in JSON format (example: {"title":"Movie1","description":"Description1","img":"URL1"},{"title":"Movie2","description":"Description2","img":"URL2"}).
Before the Airtable changes, this project was easily working because I could simply retrieve the movie image URL using a formula for the "URL" value. However, since the changes, this is no longer possible.
I do have a solution, which involves manually replacing the JSON for each movie in the Make scenario and setting the "URL" value to the functional URL "https://v5.airtableusercontent.com" that remains valid for 2 hours (which is more than enough time to launch the scenario). The issue is that this would consume a large number of Make operations, so I would like to know if there is a better solution.
Is there any way to obtain the "https://v5.airtableusercontent.com" URL of an Airtable attachment using a formula or any other method?
Solved! Go to Solution.
Jun 22, 2023 03:24 AM - edited Jun 22, 2023 03:25 AM
Did you mean TIFF format? Airtable doesn’t change formats… it just gives you the format that you originally uploaded.
If you need to convert formats, then I would use one of the many image conversion apps that are supported by Make, such as Image or Cloudinary or CloudConvert.
There are many more supported apps, too. Search for “convert” on this page.
Jun 22, 2023 02:26 AM
Jun 22, 2023 03:14 AM - edited Jun 22, 2023 03:14 AM
Thanks for the answer ! Tried that a few minutes ago, it worked but with errors on Eledo :
The URL Airtable give now look to be in a RIFF format, a format that is not supported in Eledo sadly
I tried to add a "Get a file" module to download the image and insert it in Eledo directly as a binary file, the scenario worked without error but when I look the result, no image appear on the PDF
I think the problem is on Eledo side so I contacted the support
Thanks for the help anyways !
Jun 22, 2023 03:24 AM - edited Jun 22, 2023 03:25 AM
Did you mean TIFF format? Airtable doesn’t change formats… it just gives you the format that you originally uploaded.
If you need to convert formats, then I would use one of the many image conversion apps that are supported by Make, such as Image or Cloudinary or CloudConvert.
There are many more supported apps, too. Search for “convert” on this page.
Jun 22, 2023 04:32 AM
Thanks for your answer ! I discovered that the problem was from me, one of the image I use was in webp format. I correct it so all are at png format and the scenario work now, I can insert the Airtable url directly into the Eledo module and have a PDF with working images.
Thanks a lot !