Code Monkey home page Code Monkey logo

Comments (4)

cbisnett avatar cbisnett commented on July 28, 2024

I suspect what you're seeing is a bug and is related to building the properties hash where we're only excluding the vid and not also the email (contact.rb:73).

My first though was that we should add :email to the except call and that would solve this problem but it would also mean that it wasn't possible to use bulk update to update email addresses when the vid is known. I'm not sure if updating the email address of a contact is supported when the identifier used is also an email address. This might explain the strange merging behavior you're seeing with email addresses.

Being able to change the email when using a vid seems like functionality we should maintain. We could change the except() call to exclude both :vid and :email and only merge the email into the properties hash when the identifier used is a vid. This way when creating or updating a contact using the email as the identifier, it won't try to also change the email address.

from hubspot-ruby.

Nicholas-Horton avatar Nicholas-Horton commented on July 28, 2024

Do you think something like this gets the behaviour we're looking for? Could refactor a bit to remove the duplication.

from hubspot-ruby.

cbisnett avatar cbisnett commented on July 28, 2024

To clean it up a little bit you could move the assignment of :vid or :email into the hash definition rather than merging on the next line. Something like this:

contact_param = {
  vid: contact_hash[:vid],
  properties: Hubspot::Utils.hash_to_properties(contact_hash.except(:vid))
}

from hubspot-ruby.

Nicholas-Horton avatar Nicholas-Horton commented on July 28, 2024

Sounds good. I'll clean it up and open a PR!

from hubspot-ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.