- Edited
Thanks so much. Now its workingthis is the code:$.ajax({ url: 'http://xxx.it/ticket19/api/http.php/tickets.json', type: 'POST', headers: { 'X-API-Key': '94914EFD38C290653733F0FD538974A4' }, data: JSON.stringify({ "name": "name", "email": "e@mail", "subject": "subject", "message": "text", "topicId": "1", }), contentType: 'application/json; charset=utf-8', dataType: 'json', }, function (error, response) { if (error) { console.log(error); } else { console.log(response.statusCode); } })