URL encode transform action

Use case

You are writing query parameters and the API you are sending them to requires them to be URL encoded.

Overview

When given a string this transform will URL encode it.

Parameters

Parameter
Description
Required

String

String to URL encode.

Usage

Example: Encode a string

Inputs: String: This-is-@-test!

Results output

This-is-%40-test%21

Last updated

Was this helpful?