I am trying to send a Json over HTTP post to update a record in my database. I\'ve connected to the server but I\'m getting a 415 \"Unsupported Media Type\" error when I run
You are using incomplete headers for sending the json payload. That is why the server is not accepting you request.
Use the following headers instead:
headers: { "content-type" : "application/json", "accept" : "application/json", },