Original title: Better UX for multi-line/list data in Outbound Webhook JSON. Updated to reflect the base feature was added, but now this issue can track other enhancements in the same vein.
A fairly common use case is to ask users for a list of 0-many items in a form, which can then get sent via webhook to Zapier, Make, etc. Many people accomplish this with a multi-line text input and then ask users to put each item on a newline, .e.g:
https://example.com/abc
https://example.com/123
https://example.com/def

See screenshot of example. This variable will then show up in your JSON as string with \n separating each item:
{
"key": "https://example.com/abc\nhttps://example.com/123\nhttps://example.com/def"
}
Is there a benefit to us providing an option to convert these string lists into true JSON lists? How might we provide this configuration in a way that provides value to users?
{
"key": [
"https://example.com/abc",
"https://example.com/123",
"https://example.com/def"
]
}
Original title: Better UX for multi-line/list data in Outbound Webhook JSON. Updated to reflect the base feature was added, but now this issue can track other enhancements in the same vein.
A fairly common use case is to ask users for a list of 0-many items in a form, which can then get sent via webhook to Zapier, Make, etc. Many people accomplish this with a
multi-line text inputand then ask users to put each item on a newline, .e.g:See screenshot of example. This variable will then show up in your JSON as string with
\nseparating each item:Is there a benefit to us providing an option to convert these string lists into true JSON lists? How might we provide this configuration in a way that provides value to users?