Has anyone managed to send the URL of the proform files along with the form through webhooks? I created a form and added a file field, as the file is sent to WordPress and not to the external API I need to send the URL with the form, but how do I configure this?
And if there are several images in the form, what would the configuration be?
Hi Thiago
you can use the :url modifier for the field in your webhook. So if the field ID is files_field
and you add it inside the webhook like so:
you’ll get all the urls
{
"name": "Testus Maximus",
"files": [
"https://playground.local/wp-content/uploads/2025/06/some-pic.jpg",
"https://playground.local/wp-content/uploads/2025/06/test-pic-1.png",
"https://playground.local/wp-content/uploads/2025/06/another-pic.jpg"
]
}
On a sidenote, https://webhook.site/ is a pretty nifty little site to check what your webhook is sending, so you don’t spam your actual target with data or run into the issue where the data never arrives cause your target expected x to be y