We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to update a user but I'm getting the following error: BadRequestError: bad 'pages' parameter
BadRequestError: bad 'pages' parameter
What I'm doing is the following:
user = intercom.users.find(email="[email protected]") user.custom_attributes['firstName'] = 'Bob' intercom.users.save(user)
Any ideas why this is not working?
UPDATE: I have been able to get this to work with id (intercom's id) and user_id (id assigned by us) but still not with email.
id
user_id
The text was updated successfully, but these errors were encountered:
When searching with email=, the response returned is a collection instead of a single user. It's super weird. You can do something like this:
email=
intercom_users = intercom.users.find(email="[email protected]") intercom_user = intercom.users.find(id=intercom_users.users[0]["id"])
Sorry, something went wrong.
No branches or pull requests
I'm trying to update a user but I'm getting the following error:
BadRequestError: bad 'pages' parameter
What I'm doing is the following:
Any ideas why this is not working?
UPDATE: I have been able to get this to work with
id
(intercom's id) anduser_id
(id assigned by us) but still not with email.The text was updated successfully, but these errors were encountered: