Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : 4nRMrlzbv4FieTFuqP5ynI
Microsoft Dynamics CRM (Archived)

how to update lookup field using WebAPI ?

Like (0) ShareShare
ReportReport
Posted on 4 Jul 2016 06:30:49 by 235

For an account I m trying to populate primarycontactid (lookup field) using the following code but CRM returns error "400 Bad Request"

Can you please guide how is this code wrong ? Or please if can provide a working sample of similar snario ?

  1. var entity = {};
  2. entity.primarycontactid = {
  3. Id: "ba121cbc-6a41-e611-80e0-c4346bc58294",
  4. LogicalName: "contact"
  5. };
  6.  
  7. var req = new XMLHttpRequest();
  8. req.open("PATCH", Xrm.Page.context.getClientUrl() + "/api/data/v8.0/accounts(bf121cbc-6a41-e611-80e0-c4346bc58294)", true);
  9. req.setRequestHeader("OData-MaxVersion", "4.0");
  10. req.setRequestHeader("OData-Version", "4.0");
  11. req.setRequestHeader("Accept", "application/json");
  12. req.setRequestHeader("Content-Type", "application/json; charset=utf-8");
  13. req.onreadystatechange = function () {
  14. if (this.readyState === 4) {
  15. req.onreadystatechange = null;
  16. if (this.status === 204) {
  17. //Success - No Return Data - Do Something
  18. }
  19. else {
  20. alert(this.statusText);
  21. }
  22. }
  23. };
  24. req.send(JSON.stringify(entity));


 

*This post is locked for comments

  • slx Profile Picture
    386 on 31 Oct 2017 at 09:51:46
    RE: how to update lookup field using WebAPI ?

    Could you please help with the following scenario ? I am running this code to delete a reference parentcustomerid_account

    This is working successfully on DEV but when executed on different environment IFD / ADFS the request is 404 NOT FOUND

    Do you have any idea ? Thank you

    // [Org URI]/api/data/v8.2/contacts([contactid#])/parentcustomerid_account/$ref

    contact1Uri = httpClient.BaseAddress + web_api + "contacts(" + myReader.Value.ToString

    ().ToLower() + ")/parentcustomerid_account/$ref";

    HttpResponseMessage disassocResponse1 = await httpClient.DeleteAsync(contact1Uri);

    if (disassocResponse1.StatusCode == HttpStatusCode.NoContent)

    Status code is 404 = NOT FOUND

    Same code is successful on different environment

  • slx Profile Picture
    386 on 31 Oct 2017 at 09:20:07
    RE: how to update lookup field using WebAPI ?

    Could you please help with the following scenario ? I am running this code to delete a reference parentcustomerid_account

    This is working successfully on DEV but when executed on different environment IFD / ADFS the request is 404 NOT FOUND

    Do you have any idea ? Thank you

    // [Org URI]/api/data/v8.2/contacts([contactid#])/parentcustomerid_account/$ref

    contact1Uri = httpClient.BaseAddress + web_api + "contacts(" + myReader.Value.ToString().ToLower() + ")/parentcustomerid_account/$ref";

    HttpResponseMessage disassocResponse1 = await httpClient.DeleteAsync(contact1Uri);

    if (disassocResponse1.StatusCode == HttpStatusCode.NoContent)

  • Suggested answer
    tw0sh3ds Profile Picture
    5,600 on 04 Aug 2017 at 13:27:46
    RE: how to update lookup field using WebAPI ?

    You have to do two requests, but WebAPI supports batch requests, so you can do both requests in single HTTP call. Search for CRM 2016 WebAPI batch requests on google for some tutorials

  • Maksym Tomyn Profile Picture
    30 on 04 Aug 2017 at 10:31:40
    RE: how to update lookup field using WebAPI ?

    Do I have to create two requests of DELETE for updating of the first field and PATCH for updating of the second field?

  • Suggested answer
    tw0sh3ds Profile Picture
    5,600 on 04 Aug 2017 at 09:33:25
    RE: how to update lookup field using WebAPI ?

    @Maksym Tomyn no you have to do disassociate to remove the lookup value (https://msdn.microsoft.com/en-us/library/mt607875.aspx):

    For a single-valued navigation property, remove the $id query string parameter.

    1. DELETE [Organization URI]/api/data/v8.2/opportunities(00000000-0000-0000-0000-000000000001)/customerid_account/$ref HTTP/1.1
    2. Accept: application/json
    3. OData-MaxVersion: 4.0
    4. OData-Version: 4.0
  • Maksym Tomyn Profile Picture
    30 on 04 Aug 2017 at 09:00:25
    RE: how to update lookup field using WebAPI ?

    How to update lookup field to null ? Can I update the entity with removal of value?

    var entity = {};

    entity["primarycontactid@odata.bind"] ="/contacts(null)"

    entity["new_AccountName@odata.bind"] ="/contacts(89153C7D-E45E-E611-80F6-1458D05A5490)"

    var req = new XMLHttpRequest();

    req.open("PATCH", Xrm.Page.context.getClientUrl() + "/api/data/v8.0/accounts(bf121cbc-6a41-e611-80e0-c4346bc58294)", true);

    req.setRequestHeader("OData-MaxVersion", "4.0");

    req.setRequestHeader("OData-Version", "4.0");

    req.setRequestHeader("Accept", "application/json");

    req.setRequestHeader("Content-Type", "application/json; charset=utf-8");

    req.onreadystatechange = function () {

       if (this.readyState === 4) {

           req.onreadystatechange = null;

           if (this.status === 204) {

               //Success - No Return Data - Do Something

           }

           else {

               alert(this.statusText);

           }

       }

    };

    req.send(JSON.stringify(entity));

  • Suggested answer
    Bangar Raju Profile Picture
    15 on 23 Mar 2017 at 11:38:27
    RE: how to update lookup field using WebAPI ?

    While creating CRM record using Web Api we need to use Odata CRM Schema Names not name of the attribute.

    ie, if the field is created with name "new_accountname" then the Schema name is looks like "new_AccountName".

             So While setting lookup value we need to follow the below syntax instead of using auto code generated by CRMRestBuilder.

    Ex:

    var entity = {};

    entity["primarycontactid@odata.bind"] ="/contacts(89153C7D-E45E-E611-80F6-1458D05A5490)"

    entity["new_AccountName@odata.bind"] ="/contacts(89153C7D-E45E-E611-80F6-1458D05A5490)"

    var req = new XMLHttpRequest();

    req.open("PATCH", Xrm.Page.context.getClientUrl() + "/api/data/v8.0/accounts(bf121cbc-6a41-e611-80e0-c4346bc58294)", true);

    req.setRequestHeader("OData-MaxVersion", "4.0");

    req.setRequestHeader("OData-Version", "4.0");

    req.setRequestHeader("Accept", "application/json");

    req.setRequestHeader("Content-Type", "application/json; charset=utf-8");

    req.onreadystatechange = function () {

       if (this.readyState === 4) {

           req.onreadystatechange = null;

           if (this.status === 204) {

               //Success - No Return Data - Do Something

           }

           else {

               alert(this.statusText);

           }

       }

    };

    req.send(JSON.stringify(entity));

  • Guido Preite Profile Picture
    54,077 Moderator on 04 Jul 2016 at 08:47:02
    RE: how to update lookup field using WebAPI ?

    jQuery is just a wrapper of JavaScript functions in order to be cross-browser compatible.

    WebAPI is officially released but not all the SDK operations are available with WebAPI yet.

    hope it helps

  • umma Profile Picture
    235 on 04 Jul 2016 at 08:44:26
    RE: how to update lookup field using WebAPI ?

    Thanks Guido, it helped.

    I tried as suggested using JS and result was same error, then I tried using JQuery and it was fine. Just curiest is it something known ? WebAPI sdk has not been released officially does it means it is not stable yet ? Thanks for your guidance.

  • Verified answer
    Guido Preite Profile Picture
    54,077 Moderator on 04 Jul 2016 at 06:50:55
    RE: how to update lookup field using WebAPI ?

    follow this blog post in order to see how you need to specify a lookup field with the new Web API

    www.inogic.com/.../set-values-of-all-data-types-using-web-api-in-dynamics-crm

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,364 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,524 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans
Loading complete