Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : d/mwkuSOP8xS3MtELzeHAG
Microsoft Dynamics CRM (Archived)

How to use CRM web API batch request using javascript

Like (0) ShareShare
ReportReport
Posted on 29 Nov 2016 04:33:51 by 6,210

I want to update/delete 20 quote lines. I googled it and but i didn't find any idea how to use CRM web API batch request.
Could you please any one share CRM web API batch request using javascript?

*This post is locked for comments

  • Verified answer
    JohnAnonymous Profile Picture
    5,241 on 30 Nov 2016 at 07:03:48
    RE: How to use CRM web API batch request using javascript

    Should be simple, one block for a POST message to create a record and one for a PATCH message to update the record. My blog shows an example of POST (create) and DELETE.

  • Alagunellaikumar Profile Picture
    6,210 on 30 Nov 2016 at 05:46:28
    RE: How to use CRM web API batch request using javascript

    Thanks for sharing.

    How batch request differentiate payload for create and update  ?

  • Verified answer
    JohnAnonymous Profile Picture
    5,241 on 30 Nov 2016 at 05:38:14
    RE: How to use CRM web API batch request using javascript

    Hi Alagu,

    I've posted a sample on my blog: www.oak3.org/.../webapi-batch-request

  • Verified answer
    Nithya Gopinath Profile Picture
    17,076 on 30 Nov 2016 at 04:53:42
    RE: How to use CRM web API batch request using javascript

    Hi Alagunellaikumar,

    Please try the following code. This is an example to create multiple task for new account.

    1. //Create 1 Js web resource method that will handle batch request
    2. function executeBatch (payload, batchId, successCallback, errorCallback, callerId) {
    3. var req = new XMLHttpRequest();
    4. req.open(“POST”, “Your Web Api Here” + “$batch”), true);
    5. req.setRequestHeader(“Accept”, “application/json”);
    6. req.setRequestHeader(“Content-Type”, “multipart/mixed;boundary=batch_” + batchId);
    7. req.setRequestHeader(“OData-MaxVersion”, “4.0”);
    8. req.setRequestHeader(“OData-Version”, “4.0”);
    9. req.onreadystatechange = function () {
    10. if (this.readyState == 4 /* complete */) {
    11. req.onreadystatechange = null;
    12. if (this.status == 200) {
    13. if (successCallback) {
    14. successCallback(this.response);
    15. }
    16. }
    17. else {
    18. if (errorCallback)
    19. errorCallback(Sdk.WebApiOperation.errorHandler(this));
    20. }
    21. }
    22. };
    23. req.send(payload);
    24. }
    25. //Create CreateBatchTaskforAccount method to create task for new account
    26. function CreateBatchTaskforAccount(accountUri )
    27. {
    28. //Generating random id for the payload object
    29. var batchId = GetRandomId();
    30. //Define tasks to be created:
    31. var firstTask = {
    32. subject: “new task for new account” + accountUri,
    33. “regardingobjectid_account_task@odata.bind”: accountUri
    34. };
    35. //Note: Imortant here
    36. var secondTask = {
    37. subject: “second task”,
    38. “regardingobjectid_account_task@odata.bind”: accountUri
    39. };
    40. //Start of ChangeSet
    41. payload = [“–batch_” + batchId]
    42. payload.push(“Content-Type: multipart/mixed;boundary=changeset_” + changeSetId);
    43. payload.push(“”);
    44. //First item in ChangeSet
    45. payload.push(“–changeset_” + changeSetId);
    46. payload.push(“Content-Type: application/http”);
    47. payload.push(“Content-Transfer-Encoding:binary”);
    48. payload.push(“Content-ID: 1”);
    49. payload.push(“”);
    50. payload.push(“POST ” + CrmSdk.RBEIApi.getWebApiUrl() + “tasks HTTP/1.1”);
    51. payload.push(“Content-Type: application/json;type=entry”);
    52. payload.push(“”);
    53. payload.push(JSON.stringify(firstTask));
    54. //Second item in ChangeSet
    55. payload.push(“–changeset_” + changeSetId);
    56. payload.push(“Content-Type: application/http”);
    57. payload.push(“Content-Transfer-Encoding:binary”);
    58. payload.push(“Content-ID: 2”);
    59. payload.push(“”);
    60. payload.push(“POST ” + CrmSdk.RBEIApi.getWebApiUrl() + “tasks TTP/1.1”);
    61. payload.push(“Content-Type: application/json;type=entry”);
    62. payload.push(“”);
    63. payload.push(JSON.stringify(secondTask));
    64. //End of ChangeSet
    65. payload.push(“–changeset_” + changeSetId + “–“);
    66. payload.push(“”);
    67. //Adding a GET request outside of the ChangeSet
    68. payload.push(“–batch_” + batchId);
    69. payload.push(“Content-Type: application/http”);
    70. payload.push(“Content-Transfer-Encoding:binary”);
    71. payload.push(“”);
    72. //Retrieve all the tasks related to the account
    73. payload.push(“GET ” + accountUri + “/Account_Tasks?$select=subject HTTP/1.1”);
    74. payload.push(“Accept: application/json”);
    75. payload.push(“”);
    76. payload.push(“–batch_” + batchId + “–“);
    77. executeBatch(payload.join(“\r\n”), batchId, function (response) {
    78. alert(response);
    79. }, function (error) {
    80. alert(error);
    81. });
    82. }
    83. //Generating random id for Payload object
    84. Function GetRandomId (idLength) {
    85. if (this.isNullOrUndefined(idLength))
    86. idLength = 10;
    87. if (this.isNumber(idLength)) {
    88. if (idLength > 30) {
    89. throw new Error(“Length must be less than 30.”);
    90. }
    91. }
    92. else {
    93. throw new Error(“Length must be a number.”);
    94. }
    95. var returnValue = “”;
    96. var characters = “ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789”;
    97. for (var i = 0; i < idLength; i++)
    98. returnValue += characters.charAt(Math.floor(Math.random() * characters.length));
    99. return returnValue;
    100. }
  • Alagunellaikumar Profile Picture
    6,210 on 30 Nov 2016 at 04:45:52
    RE: How to use CRM web API batch request using javascript

    Hi Martijn,

    If you don't mind, could you please give me full code for create batch request for task? I don't understand, how should i use properly?

  • Suggested answer
    JohnAnonymous Profile Picture
    5,241 on 29 Nov 2016 at 06:52:07
    RE: How to use CRM web API batch request using javascript

    What you can do in javascript is the following

    1. //create an empty array
    2. var payload = [];
    3.  
    4. //push objects into that array
    5. payload.push('--batch_340293023');
    6. payload.push('Content-Type......');
    7. payload.push('');
    8.  
    9. //create the payload that you can use in the post message
    10. var postdata = payload.join('\r\n');


    This worked for me.

  • Suggested answer
    Nithya Gopinath Profile Picture
    17,076 on 29 Nov 2016 at 05:38:06
    RE: How to use CRM web API batch request using javascript

    Hi,

    Please go through the following link.

    community.dynamics.com/.../involve-batch-operation-crm-2016-web-api

  • Alagunellaikumar Profile Picture
    6,210 on 29 Nov 2016 at 05:29:49
    RE: How to use CRM web API batch request using javascript

    How should i create a payload for this? I could not understand the payload for batch request

  • Suggested answer
    Nithya Gopinath Profile Picture
    17,076 on 29 Nov 2016 at 05:24:56
    RE: How to use CRM web API batch request using javascript

    Hi Alagu nellaikumar,

    Please refer the link below:

    stackoverflow.com/.../crm-webapi-batch-request

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,361 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,522 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans