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…