Unable to add issue via AJAX and REST API. I can get it to work with Postmen, unfortunately, cannot get it with an Ajax request.
The JSON that I create is OK, and the submit request. The issuetype type is what I created myself, using Bug gives the same problem. See JSON object created, my error and my code: JSON object (this is a fragment from console.log):

Error
0: "Unrecognized token" fils5poet5 ": expected" null "," true "," false "or NaNβ΅ in [Source: org.apache.catalina.connector.CoyoteInputStream@7b958ed2 ; line 1, column: 21]"
jira = { fields : { project : { key : "CIC" }, summary : "test", description: "test", issuetype : { name : "Sandbox item" } } }; console.log(jira); //Also see image at top of this post. // Submit to Jira api $.ajax({ type : "POST", dataType : "JSON", url : configuration.api_url, beforeSend: function (xhr) { xhr.setRequestHeader ("Authorization", "Basic ItsAWrap!(itworks...)"), xhr.setRequestHeader ("Content-Type", "application/json"); }, data : jira, success : (function(response) { //Do something }})
source share