Skip to content

Breaking change: Find companies

Compare
Choose a tag to compare
@choran choran released this 02 Oct 16:43
· 151 commits to master since this release
400c6fc

BREAKING CHANGE companies

We updated companies to be able to list users via company_id as well as id (#428 )
Note that this is a breaking change as we had to remove the old way of listing users via company.

Previously it was:

intercom.companies.users(company.id)

Now you get a list of users in a company by Intercom Company ID

intercom.companies.users_by_intercom_company_id(company.id)

Now you get a list of users in a company by external company_id

intercom.companies.users_by_company_id(company.company_id)

Rate limit handling

We also improved the way we handle rate limits in PR #409 which was related to issue #405