//-- Intent: Create a new Voice_Message using a minimal set of options --// var jsonString = ' \ { \ "Name":"API JSON SIMPLE Voice Message 2", \ "Description":"created by JSON api 2", \ "CallerID":2012361344, \ "UseTTS":true, \ "Content":"this is the body of my message", \ }'; $.ajax({ type: "POST", contentType: "application/json; charset=utf-8", headers: {"SwiftAPI-Key": "12345"}, url: "http://api.v4.swiftreach.com/api/Messages/Voice/Create/Simple", data: jsonString, dataType: "json" success: function(result) { // Do something with the result } });