-
Notifications
You must be signed in to change notification settings - Fork 24
UrlEncode
Miriam McMahon edited this page Apr 27, 2023
·
7 revisions
Convert a text string into a URL-encoded string
Parameter Name | Description | Type | Resolved Type | Required |
---|---|---|---|---|
Source | The string to be converted into a URL-encoded 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 v2.8
Example:
{
"UrlEncode": {
"Source": "%Url%",
"ResultVariable": "EncodedUrl"
}
},