Intercom API (Unstable)
The intercom API reference.
https://api.intercom.io/
https://api.eu.intercom.io/
https://api.au.intercom.io/
AI Content
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.",
Custom Channel Events
With 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.
Please reach out to your accounts team to discuss access and tailored, hands-on support.
Request
Notifies Intercom that a new conversation was created in your custom channel/platform. This triggers conversation creation and workflow automations within Intercom for your custom channel integration.
Please reach out to your accounts team to discuss access and tailored, hands-on support.
External identifier for the contact. Intercom will take care of the mapping of your external_id with our internal ones so you don't have to worry about it.
- The production API server
https://api.intercom.io/custom_channel_events/notify_new_conversation
- The european API server
https://api.eu.intercom.io/custom_channel_events/notify_new_conversation
- The australian API server
https://api.au.intercom.io/custom_channel_events/notify_new_conversation
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/custom_channel_events/notify_new_conversation \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Unstable' \
-d '{
"event_id": "evt_12345",
"external_conversation_id": "conv_67890",
"contact": {
"type": "user",
"external_id": "user_001",
"name": "Jane Doe",
"email": "jane.doe@example.com"
}
}'
{ "external_conversation_id": "customer_conversation_id_12", "conversation_id": "intercom_conversation_id_34", "external_contact_id": "customer_contact_id_56", "contact_id": "intercom_contact_id_79" }
Request
Notifies Intercom that a new message was sent in a conversation on your custom channel/platform. This allows Intercom to process the message and trigger any relevant workflow automations.
Please reach out to your accounts team to discuss access and tailored, hands-on support.
External identifier for the contact. Intercom will take care of the mapping of your external_id with our internal ones so you don't have to worry about it.
- The production API server
https://api.intercom.io/custom_channel_events/notify_new_message
- The european API server
https://api.eu.intercom.io/custom_channel_events/notify_new_message
- The australian API server
https://api.au.intercom.io/custom_channel_events/notify_new_message
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/custom_channel_events/notify_new_message \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Unstable' \
-d '{
"event_id": "evt_54321",
"external_conversation_id": "conv_98765",
"contact": {
"type": "user",
"external_id": "user_002",
"name": "John Smith",
"email": "john.smith@example.com"
},
"body": "Hello, I need help with my order."
}'
{ "external_conversation_id": "customer_conversation_id_12", "conversation_id": "intercom_conversation_id_34", "external_contact_id": "customer_contact_id_56", "contact_id": "intercom_contact_id_79" }
Request
Notifies Intercom that a user selected a quick reply option in your custom channel/platform. This allows Intercom to process the response and trigger any relevant workflow automations.
Please reach out to your accounts team to discuss access and tailored, hands-on support.
External identifier for the contact. Intercom will take care of the mapping of your external_id with our internal ones so you don't have to worry about it.
- The production API server
https://api.intercom.io/custom_channel_events/notify_quick_reply_selected
- The european API server
https://api.eu.intercom.io/custom_channel_events/notify_quick_reply_selected
- The australian API server
https://api.au.intercom.io/custom_channel_events/notify_quick_reply_selected
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/custom_channel_events/notify_quick_reply_selected \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Unstable' \
-d '{
"event_id": "evt_67890",
"external_conversation_id": "conv_13579",
"contact": {
"type": "user",
"external_id": "user_003",
"name": "Alice Example",
"email": "alice@example.com"
},
"quick_reply_option_id": "1234"
}'
{ "external_conversation_id": "customer_conversation_id_12", "conversation_id": "intercom_conversation_id_34", "external_contact_id": "customer_contact_id_56", "contact_id": "intercom_contact_id_79" }
Request
Notifies Intercom that a user provided a response to an attribute collector in your custom channel/platform. This allows Intercom to process the attribute and trigger any relevant workflow automations.
Please reach out to your accounts team to discuss access and tailored, hands-on support.
External identifier for the contact. Intercom will take care of the mapping of your external_id with our internal ones so you don't have to worry about it.
- The production API server
https://api.intercom.io/custom_channel_events/notify_attribute_collected
- The european API server
https://api.eu.intercom.io/custom_channel_events/notify_attribute_collected
- The australian API server
https://api.au.intercom.io/custom_channel_events/notify_attribute_collected
- curl
- Node.js
- Ruby
- PHP
- Python
- Java
- Go
- C#
- R
curl -i -X POST \
https://api.intercom.io/custom_channel_events/notify_attribute_collected \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: Unstable' \
-d '{
"event_id": "evt_24680",
"external_conversation_id": "conv_11223",
"contact": {
"type": "user",
"external_id": "user_004",
"name": "Bob Example",
"email": "bob@example.com"
},
"attribute": {
"id": "shipping_address",
"value": "123 Main St, Springfield"
}
}'
{ "external_conversation_id": "customer_conversation_id_12", "conversation_id": "intercom_conversation_id_34", "external_contact_id": "customer_contact_id_56", "contact_id": "intercom_contact_id_79" }
Custom Object Instances
Everything about your Custom Object instances.
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.