You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code failed to update on save with a False value within the dictionary.
user = intercom_client.users.find(email=user_email)
user.custom_attributes.update(attributes_dict)
intercom_client.users.save(user)
while this did work
user = intercom_client.users.find(email=user_email)
user.custom_attributes.update(attributes_dict)
for key, val in attributes_dict.iteritems():
user.custom_attributes[key] = val
intercom_client.users.save(user)
The text was updated successfully, but these errors were encountered:
attributes_dict = {'is_active': False}
This code failed to update on save with a False value within the dictionary.
while this did work
The text was updated successfully, but these errors were encountered: