Is there any other alternative to avoid putting Double quotes

Hi I am trying to call Orchestrator API using an HTTP request
in the body section I have to use double Double quotes to make the body valid something like the below one.

“{”“grant_type”“: ““refresh_token””,”“client_id”“: “”[Client Id]”“,”“refresh_token”“: “”[User Key]”“}”

Is there any other alternative to avoid putting Double Double quotes to make the developer life easy? As UiPath is well know for that.

@Kayobot
Instead of directly passing values in the body, Place values in text file
and then read text file → pass the output String in the body.
Please refer the screen shots for the same

Thanks that is a nice idea,

But anything better is possible like an @ symbol we put for C# code?

Hi @Kayobot

I am recommending @Karuna way since it would be better

Alternate way is to try with Chr(34)

Chr(34) will return double quotes actually

For eg if I need to display ““Nived””

Then I will use the below code to display like above

Chr(34)+Chr(34)+“Nived”+Chr(34)+Chr(34)

Regards

Nived N :robot:

Happy Automation :relaxed::relaxed::relaxed:

which version of studio is using?
currently no till 2020.4 version

cheers :slight_smile: