Convert json as json value

I have a API response

{
"success": false,
"errors": [
{
"message": "Erro happened during integration.",
}
],
"created": true
}

I want to convert it as payload to json value as

{
"ErrorLog": "{\r\n "success": false,\r\n "errors": [\r\n {\r\n "message": "Erro happened during integration.",\r\n }\r\n ],\r\n "created": true\r\n}"
}
Is there a better or elegant way than I did.
convert Json to json.morph (5.4 KB)

As an alternative, you can try to replace the first brace with a character (or sequence of characters) that you can be 100% sure will never appear in the JSON data. Then call the “Construct JSON” action and replace back that character (or sequence of characters) with a brace.