Skip to content

UrlDecode

Miriam McMahon edited this page Apr 27, 2023 · 6 revisions

Description

Convert a URL-encoded string into a decoded string

Parameters

Parameter Name Description Type Resolved Type Required
Source The URL-encoded string to be converted into a decoded string Value String Yes
ResultVariable The name of the variable that will receive the converted string String String Yes
IsSecret If true, causes the ResultVariable created to be flagged as secret so that its value is not logged. Default= false. Boolean Boolean No

Compatibility

This command was introduced in Safeguard 2.8

Examples

Example:

{
	"UrlDecode": {
		"Source": "%EncodedUrl%",
		"ResultVariable": "DecodedUrl"
	}
}