How to Create JSON body text in HTTP Request

Hello,

I’m having the same problem. I`m trying to start a job using HTTP request activity and I have to send the following information in the body json:

{
“startInfo”: {
“ReleaseKey”: “XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX”,
“RobotIds”: [
XXX
],
“NoOfRobots”: 0,
“Strategy”: “Specific”
}
}

I have tried to store in the variable StartProcessDto the value “{”“ReleaseKey”“: ““XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX””,”“RobotIds”“: [XXX],”“NoOfRobots”“: 0,”“Strategy”“: ““Specific””}” .

How should I set startInfo variable value?

Regards,