Header structure works correctly, used it for a
String query = ‘{ “query” : “{boards(ids:887415581){items(limit:20){id name}} }”}’;
This call works in both Postman and SFDC apex. But when I make the call for mutation with the following string I apply JSON serialize :
String colValue = ‘{"numbers_16":" 42","numbers":"5"}’;
** String str = JSON.serialize(colValue);**
Now I added to the query for the call:
String query = ‘{“query”:"mutation{change_multiple_column_values (board_id: 887415581, item_id: 887415649, column_values:’ + str +’ ){id}}"}';
String don = JSON.serialize(query);
system.debug(LoggingLevel.FINEST , don);

