Skip to main content
Version: Next

Map To Url Params

Transform a Map into URL Query Parameters

Description

Transform a Set of key/values into an URL encoded query string, for example key1=val1&key2=val2

This can be appended to an URL as query parameters, or passed to the body of an HTTP request when content-type is xxx-uri-form-encoded.

Each value is encoded using encodeUriComponent function

Undefined or null values in the map are ignored

Inputs

  • Control Flow (Control Flow)
  • params Map (Map): The map of params

Outputs

  • Control Flow (Control Flow)
  • params String (String): The string of params