Notion Get a file

Welcome to the Make community!

BECAUSE you are using the get function directly, you need to tell it to reference the first result item in the result array.

{{get(1.body.results; "1.image.file.url")}}

Screenshot_2025-02-27_110252

The “proper” Make Academy taught way is to use map and get/first, then you do not need to specify “1.”

{{first(map(1.body.results; "image.file.url"))}}

Screenshot_2025-02-27_110237

For more information, see the map/get function documentation in the Help Center, and complete the Make Academy as it is explained in further detail there.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

1 Like