Postman remove "/" character from body of api call

Hi,

I am trying to use a API call that has the body below. The message input needs to be a string {\"test\":1, \"test2\":2}. When I run this postman call, somehow postman will change the string to remove the "" character. So the string will become {"test":1, "test2":2}.

This will cause a failure as the target application needs the string to be {\"test\":1, \"test2\":2}.

How can I make postman not remove the "" character when I run it ?

{
"flowUuid": "SOARSaaS.CreateIncident_SaaS",
"inputs": {
    "Title":"soarfrompostman json nov 1",
    "Message":"{\"test\":1, \"test2\":2}"
   }
}

Thanks…

Hey @aerospace-administ12 :wave:

Welcome to the Postman Community! :postman:

Could you show the structure of your request, please? Where are you inputting this value.