Skip to content

Outbound Webhook JSON: improve UX/DX by providing advanced parsing/data wrangling #33

Description

@I-Dont-Remember

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

image

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"
  ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Nice To HaveImproves the tool, but isn't a make or break for users.enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions