The intercom API reference.
Download OpenAPI description
The production API server The european API serverhttps://api.eu.intercom.io/
The australian API serverhttps://api.au.intercom.io/
AdminsEverything about your Admins
AdminAdmins are teammate accounts that have access to a workspace.
String representing the object's type. Always has the value admin
.
Example: "admin"
The id representing the admin.
Example: "1295"
Example: "jdoe@example.com"
The job title of the admin.
Example: "Associate"
Identifies if this admin is currently set in away mode.
Example: false
away_mode_reassignbooleanIdentifies if this admin is set to automatically reassign new conversations to the apps default inbox.
Example: false
away_status_reason_idinteger or nullThe unique identifier of the away status reason
Example: 12345
Identifies if this admin has a paid inbox seat to restrict/allow features that require them.
Example: true
team_idsArray of integersThis object represents the avatar associated with the admin.
Example: [814865]
avatarstring or null(uri)Image for the associated team or teammate
Example: "https://picsum.photos/200/300"
team_priority_levelobject or null(Team Priority Level)Admin priority levels for teams
Request{ "type": "admin", "id": "1295", "name": "Joe Example", "email": "jdoe@example.com", "job_title": "Associate", "away_mode_enabled": false, "away_mode_reassign": false, "away_status_reason_id": 12345, "has_inbox_seat": true, "team_ids": [ 814865 ], "avatar": "https://picsum.photos/200/300", "team_priority_level": { "primary_team_ids": [ … ], "secondary_team_ids": [ … ] } }
You can view the currently authorised admin along with the embedded app object (a "workspace" in legacy terminology).
Headers Intercom-Versionstring(intercom_version)🚧 Single Sign On
If you are building a custom "Log in with Intercom" flow for your site, and you call the
/me
endpoint to identify the logged-in user, you should not accept any sign-ins from users with unverified email addresses as it poses a potential impersonation security risk.
Intercom API version.
By default, it's equal to the version set in the app package.
Default 2.14
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.14
https://api.intercom.io/me
https://api.eu.intercom.io/me
https://api.au.intercom.io/me
curl -i -X GET \ https://api.intercom.io/me \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Intercom-Version: 2.14'Bodyapplication/json
String representing the object's type. Always has the value admin
.
Example: "admin"
The id representing the admin.
Example: "1295"
Example: "jdoe@example.com"
The job title of the admin.
Example: "Associate"
Identifies if this admin is currently set in away mode.
Example: false
away_mode_reassignbooleanIdentifies if this admin is set to automatically reassign new conversations to the apps default inbox.
Example: false
Identifies if this admin has a paid inbox seat to restrict/allow features that require them.
Example: true
team_idsArray of integersThis is a list of ids of the teams that this admin is part of.
Example: [814865]
This object represents the avatar associated with the admin.
email_verifiedboolean or nullIdentifies if this admin's email is verified.
Example: true
App is a workspace on Intercom
Request{ "type": "admin", "id": "991267459", "email": "admin1@email.com", "name": "Ciaran1 Lee", "email_verified": true, "app": { "type": "app", "id_code": "this_is_an_id1_that_should_be_at_least_40", "name": "MyApp 1", "created_at": 1734537243, "secure": false, "identity_verification": false, "timezone": "America/Los_Angeles", "region": "US" }, "avatar": { "type": "avatar", "image_url": "https://static.intercomassets.com/assets/default-avatars/admins/128.png" }, "has_inbox_seat": true }
You can set an Admin as away for the Inbox.
PathThe unique identifier of a given admin
Headers Intercom-Versionstring(intercom_version)Intercom API version.
By default, it's equal to the version set in the app package.
Default 2.14
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.14
Bodyapplication/json away_mode_enabledbooleanrequiredSet to "true" to change the status of the admin to away.
Default true
Example: true
away_mode_reassignbooleanrequiredSet to "true" to assign any new conversation replies to your default inbox.
Default false
Example: false
away_status_reason_idintegerThe unique identifier of the away status reason
Example: 12345
https://api.intercom.io/admins/{id}/away
https://api.eu.intercom.io/admins/{id}/away
https://api.au.intercom.io/admins/{id}/away
curl -i -X PUT \ 'https://api.intercom.io/admins/{id}/away' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Content-Type: application/json' \ -H 'Intercom-Version: 2.14' \ -d '{ "away_mode_enabled": true, "away_mode_reassign": true, "away_status_reason_id": 12345 }'Bodyapplication/json
String representing the object's type. Always has the value admin
.
Example: "admin"
The id representing the admin.
Example: "1295"
Example: "jdoe@example.com"
The job title of the admin.
Example: "Associate"
Identifies if this admin is currently set in away mode.
Example: false
away_mode_reassignbooleanIdentifies if this admin is set to automatically reassign new conversations to the apps default inbox.
Example: false
away_status_reason_idinteger or nullThe unique identifier of the away status reason
Example: 12345
Identifies if this admin has a paid inbox seat to restrict/allow features that require them.
Example: true
team_idsArray of integersThis object represents the avatar associated with the admin.
Example: [814865]
avatarstring or null(uri)Image for the associated team or teammate
Example: "https://picsum.photos/200/300"
team_priority_levelobject or null(Team Priority Level)Admin priority levels for teams
Request{ "type": "admin", "id": "991267460", "name": "Ciaran2 Lee", "email": "admin2@email.com", "away_mode_enabled": true, "away_mode_reassign": true, "has_inbox_seat": true, "away_status_reason_id": "12345", "team_ids": [] }
You can get a log of activities by all admins in an app.
Query created_at_afterstringrequiredThe start date that you request data for. It must be formatted as a UNIX timestamp.
Example: created_at_after=1677253093
The end date that you request data for. It must be formatted as a UNIX timestamp.
Example: created_at_before=1677861493
Headers Intercom-Versionstring(intercom_version)Intercom API version.
By default, it's equal to the version set in the app package.
Default 2.14
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.14
https://api.intercom.io/admins/activity_logs
https://api.eu.intercom.io/admins/activity_logs
https://api.au.intercom.io/admins/activity_logs
curl -i -X GET \ 'https://api.intercom.io/admins/activity_logs?created_at_after=1677253093&created_at_before=1677861493' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Intercom-Version: 2.14'Bodyapplication/json
String representing the object's type. Always has the value activity_log.list
.
Example: "activity_log.list"
pagesobject or null(Cursor based pages)Cursor-based pagination is a technique used in the Intercom API to navigate through large amounts of data. A "cursor" or pointer is used to keep track of the current position in the result set, allowing the API to return the data in small chunks or "pages" as needed.
activity_logsArray of objects or null(Activity Log)An array of activity logs
Request{ "type": "activity_log.list", "pages": { "type": "pages", "next": null, "page": 1, "per_page": 20, "total_pages": 1 }, "activity_logs": [ { … }, { … } ] }
You can fetch a list of admins for a given workspace.
Headers Intercom-Versionstring(intercom_version)Intercom API version.
By default, it's equal to the version set in the app package.
Default 2.14
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.14
https://api.intercom.io/admins
https://api.eu.intercom.io/admins
https://api.au.intercom.io/admins
curl -i -X GET \ https://api.intercom.io/admins \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Intercom-Version: 2.14'Bodyapplication/json
String representing the object's type. Always has the value admin.list
.
Example: "admin.list"
adminsArray of objects or null(Admin)A list of admins associated with a given workspace.
Request{ "type": "admin.list", "admins": [ { … } ] }
You can retrieve the details of a single admin.
PathThe unique identifier of a given admin
Example: 123
Headers Intercom-Versionstring(intercom_version)Intercom API version.
By default, it's equal to the version set in the app package.
Default 2.14
Enum"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example: 2.14
https://api.intercom.io/admins/{id}
https://api.eu.intercom.io/admins/{id}
https://api.au.intercom.io/admins/{id}
curl -i -X GET \ https://api.intercom.io/admins/123 \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'Intercom-Version: 2.14'Bodyapplication/json
String representing the object's type. Always has the value admin
.
Example: "admin"
The id representing the admin.
Example: "1295"
Example: "jdoe@example.com"
The job title of the admin.
Example: "Associate"
Identifies if this admin is currently set in away mode.
Example: false
away_mode_reassignbooleanIdentifies if this admin is set to automatically reassign new conversations to the apps default inbox.
Example: false
away_status_reason_idinteger or nullThe unique identifier of the away status reason
Example: 12345
Identifies if this admin has a paid inbox seat to restrict/allow features that require them.
Example: true
team_idsArray of integersThis object represents the avatar associated with the admin.
Example: [814865]
avatarstring or null(uri)Image for the associated team or teammate
Example: "https://picsum.photos/200/300"
team_priority_levelobject or null(Team Priority Level)Admin priority levels for teams
AI Content{ "type": "admin", "id": "991267468", "name": "Ciaran9 Lee", "email": "admin9@email.com", "away_mode_enabled": false, "away_mode_reassign": false, "has_inbox_seat": true, "away_status_reason_id": null, "team_ids": [] }
With the AI Content APIs, you can create and manage External Pages and Content Import Sources for your Fin Content Library.
External Pages are pages that you want Fin to be able to answer questions about. The API for External Pages is a great way to ingest into your Fin Content Library pages that are not publicly accessible and hence can't be crawled by Intercom.
Content Import Sources are the sources of those pages, and they are used to determine the default audience for the pages (configured via the UI). You should create a Content Import Source for each source of External Pages that you want to ingest into your Fin Content Library.
You can then iterate through the content from that source via its API and POST it to the External Pages endpoint. That endpoint has an external_id parameter which allows you to specify the identifier from the source. The endpoint will then either create a new External Page or update an existing one as appropriate.",
ArticlesEverything about your Articles
Away Status ReasonsEverything about your Away Status Reasons
CompaniesEverything about your Companies
ConversationsEverything about your Conversations
Custom Channel EventsWith the "Custom Channel" integration, you can bring Fin and Intercom capabilities to your own platform via API, enabling powerful custom integrations.
Intercom treats your integration like any other Intercom channel, allowing your application and Intercom to exchange events seamlessly. This makes it possible, for example, for your users to interact with Fin directly within your own application’s UI.
Custom Object InstancesNote: "Fin over API" is currently under managed availability. Please reach out to your accounts team to discuss access and tailored, hands-on support.
Everything about your Custom Object instances.
Permission Requirements
From now on, to access this endpoint, you need additional permissions. Please head over to the Developer Hub app package authentication settings to configure the required permissions.
Data AttributesEverything about your Data Attributes
Data EventsEverything about your Data Events
Data ExportEverything about your Data Exports
Help CenterEverything about your Help Center
Internal ArticlesEverything about your Internal Articles
MessagesEverything about your messages
NewsEverything about your News
NotesEverything about your Notes
Reporting Data ExportEverything about Reporting Data Export
SegmentsEverything about your Segments
Subscription TypesEverything about subscription types
TeamsEverything about your Teams
Ticket StatesEverything about your ticket states
Ticket Type AttributesEverything about your ticket type attributes
Ticket TypesEverything about your ticket types
TicketsEverything about your tickets
VisitorsEverything about your Visitors
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4