Hi, I am adding a list of uploaded files via Gravity Forms to a Monday.com board using Zapier (“Create update in Monday.com”). However, when there’s multiple files, Monday.com is treating the whole list as a single link and auto-generating an incorrect URL.
Returned code example via gravity forms
[Files] => Array
(
[0] => https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file1.png
[1] => https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file2.png
)
However, when I insert the “Files” field into Monday.com it’s returned as a single link such as
<a href="https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file1.png,https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file2.png">https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file1.png,https://www.domain.com/wp-content/uploads/gravity_forms/path/to/file2.png</a>
How can this be returned a the correct 2 file references?
Thanks,
— Christiaan