Home//
REST API Reference
/- Get a bulk companies job
Create or Update a company
Retrieve companies
Retrieve a company by ID
Update a company
Delete a company
List attached contacts
List attached segments for companies
List all company notes
Create a company note
Search companies
List all companies
Scroll over all companies
Attach a Contact to a Company
List attached companies for contact
Detach a contact from a company
Bulk create or update companies
Bulk update companies
Bulk delete companies
Companies Bulk Job
Company
Get a bulk companies job
You can check the status of a bulk companies job. The state field indicates the overall job progress: pending, running, completed, or completed_with_errors.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"Preview"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:Preview
- The production API serverhttps://api.intercom.io/companies/bulk/{id}
- The european API serverhttps://api.eu.intercom.io/companies/bulk/{id}
- The australian API serverhttps://api.au.intercom.io/companies/bulk/{id}
curl -i -X GET \
https://api.intercom.io/companies/bulk/job_v2_1 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Intercom-Version: Preview'successful
The current state of the job.
Enum:"pending""running""completed""completed_with_errors"
Example:"running"
The time the job was last updated as a UNIX timestamp.
Example:1713360060
The time the job completed as a UNIX timestamp. Null if not yet completed.
Example:1713360120
Response
{ "id": "job_v2_1", "type": "companies.bulk.job", "state": "completed", "created_at": 1713360000, "updated_at": 1713360120, "completed_at": 1713360120, "tasks": [ { … } ], "url": "https://api.intercom.io/companies/bulk/job_v2_1" }