From ImagePicker to webhook during Input Form

Hi,

Some solution to get the imageUrl from one image loaded in ImagePicker before submit the form. I can see the reference name loaded but i can t get on the fly to use in a webhook in the same form. At this state the image is not in the table. Regards

1 Like

You could point the image picker to a column in the user profile. That way the url will be instantly accessible. If you still need it submitted with your form, you can include the user profile value as a component in your form.

2 Likes

In Glide you can’t grab the real image URL before the form is submitted because the file isn’t uploaded or written to the table yet the picker only holds a temporary reference until submit. That’s why the webhook can’t read it “live” in the same form.

If you want to use the URL in a webhook, you need one of these patterns:

  1. Submit first → run webhook after write (using a row-added trigger or action after submission)
  2. Upload image outside the form first (so the URL already exists before opening the form)

There’s currently no native way to extract the final URL mid-form before the write happens.

1 Like

Yes there is :down_arrow:

4 Likes