I need to make this text:
{
"method": "api.notifications.add",
"params": {
"name": "sequence.state.changed",
"options": {
"include_print_record": true,
"include_layout": true
}
},
"id": 0,
"jsonrpc": "2.0"
}
Into a string with c# such as like this:
input = @"{
"method": "api.notifications.add",
"params": {
"name": "sequence.state.changed",
"options": {
"include_print_record": true,
"include_layout": true
}
},
"id": 0,
"jsonrpc": "2.0"
}";
It needs to retain the formatting that it has. I have tried a number of things including putting a back slash before each quote and obviously putting an @ symbol before the first quote.

