Action Contracts variable

Hi,
is there any option in data action to create Action Contracts as a variable that holds the full text with spaces, since I use a variable as a string that does not hold spaces,my intention is to send third-party SMS to a mobile number with a custom text that contains paragraphs with spaces.

String inputs should be able to accept strings that contain spaces. Are you experiencing problems trying to use strings like that?

--Jason

Hi @Jason_Mathison ,
Yes i face a problem like that,you can see below error that I'm getting running on that action with message "Hello World" but its works fine when use message like "HelloWorld".also I test the webservice end which accepts spaces , but once I calls through data action am getting below error.

image

Are you attempting to use that string as part of the URL? In that case, you probably need to wrap the variable with
$esc.uriEncode($input.variablename)

see

for additional details.

--Jason

@Jason_Mathison,
Appreciate your support, it's works after changing to shared format.