Hi,
I am trying to integrate a third party API which works in a very weird way.
I need to send the data in request body in exactly below format.
board= [["7","3","7","1","0","0","1","0","0"],["1",0,3,4,4,0,5,7,0],[5,0,0,2,5,0,0,0,0],[0,0,4,0,5,5,0,0,0],[3,0,0,7,9,0,0,0,0],[7,9,8,0,1,3,3,0,5],[0,0,1,0,0,0,9,5,6],[6,6,5,9,0,3,7,0,1],[9,7,8,5,7,6,0,3,1]]
First I tried by constructing dictionary and then i realised that instead of regular symbol between key/value ':', the API is expecting "=".
So i changed the dictionary to text but I am still facing the problem due to (") before the board key word. attached below is the snap shot of the request body. Please refer the curly braces before the word board in DO IT window. Please suggest if there is any way or workaround to handle this issue.
Thanks