- Create or Update a company
You can create or update a company.
Companies will be only visible in Intercom when there is at least one associated user.
Companies are looked up via company_id in a POST request, if not found via company_id, the new company will be created, if found, that company will be updated.
You can set a unique company_id value when creating a company. However, it is not possible to update company_id. Be sure to set a unique value once upon creation of the company.
Intercom API version.
By default, it's equal to the version set in the app package.
The company id you have defined for the company. Can't be updated
The URL for this company's website. Please note that the value specified here is not validated. Accepts any string.
A hash of key/value pairs containing any other data about the company you want Intercom to store.
{ "paid_subscriber": true, "monthly_spend": 155.5, "team_mates": 9 }
- The production API serverhttps://api.intercom.io/companies
- The european API serverhttps://api.eu.intercom.io/companies
- The australian API serverhttps://api.au.intercom.io/companies
- Successful
- Bad Request
curl -i -X POST \
https://api.intercom.io/companies \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: 2.9' \
-d '{
"company_id": "company_remote_id",
"name": "my company",
"remote_created_at": 1374138000
}'Successful
The Intercom defined code of the workspace the company is associated to.
The custom attributes you have set on the company.
{ "paid_subscriber": true, "monthly_spend": 155.5, "team_mates": 9 }
{ "type": "company", "company_id": "company_remote_id", "id": "6657aaba6abd0164c24b0c8e", "app_id": "this_is_an_id127_that_should_be_at_least_", "name": "my company", "remote_created_at": 1374138000, "created_at": 1717021370, "updated_at": 1717021370, "monthly_spend": 0, "session_count": 0, "user_count": 0, "tags": { "type": "tag.list", "tags": [] }, "segments": { "type": "segment.list", "segments": [] }, "plan": {}, "custom_attributes": { "industry": "manufacturing" } }