Skip to main content
Converts a form URL encoded string into structured data. This is the format a web form or a query string uses, where fields are joined with & and each field is written as name=value, for example sku=A1&name=Wool+scarf. Use this when a value in your flow holds such a string, for example the body of a posted form or a captured query string, and you want to work with the individual fields as data you can map and transform.

Fields

Sample data

FieldValue
CompatibilityPHP compatible
Input:
sku=A1&name=Wool+scarf&price=19.95&tags[0]=winter&tags[1]=sale
Output:
{
    "sku": "A1",
    "name": "Wool scarf",
    "price": 19.95,
    "tags": ["winter", "sale"]
}