-
Notifications
You must be signed in to change notification settings - Fork 24
UrlDecode
Miriam McMahon edited this page Apr 27, 2023
·
6 revisions
Convert a URL-encoded string into a decoded string
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 |
This command was introduced in Safeguard 2.8
Example:
{
"UrlDecode": {
"Source": "%EncodedUrl%",
"ResultVariable": "DecodedUrl"
}
}