With this guide: https://msdn.microsoft.com/en-us/library/mt607719.aspx, I'm trying to create a batch request to delete all quotedetails on a quote.
I'm using jquery's ajax to do the request:
$.ajax(
{
method: 'POST',
url: 'http://crm/api/data/v8.0/$batch',
headers: {
'Content-Type': 'multipart/mixed;boundary=batch_' + batchId,
'Accept': 'application/json'
},
data: payload
});
And this is the payload:
I'm not getting an error, but the quotedetails aren't deleted.
This is the response:
--batchresponse_a3304387-0e91-4097-b9f8-a207da3aa845--
Any clues on what I'm doing wrong?
*This post is locked for comments
I have the same question (0)