To build on Mike’s point, I think you added {{ and }} to escape the braces in the Request body, when, in fact, you only need to escape the open { character.
There are 2 ways so solve this:
Option A:
Option B:
Arshia,
Not sure what the source of this JSON is, but its not valid JSON. Here is what you included above:
And this is how it should look to be valid JSON:
{
"owner": "111231",
"rEntity": [],
"rParty": [
{
"role": "User",
"id": "123921",
"name": "TestUser"
}
],
"rPlace": [],
"desc": "brief description",
"cSpec": {
"id": "Catalog"
},
"attrs": [
{
"value": "123921",
"name": "contact"
},
{
"value": "1",
"name": "location"
}
],
"requestedCompletionDate": "2020-10-01T15:35:06.163Z",
"externalId": null,
"createdBy": "admin"
}
in the first copy, I highlighted what was removed to make the JSON valid. Without these brackets, you can use the JSON in a Mendix JSON structure (and an export mapping).
Maybe that will help you figure out how to get this working.
Mike