Expand Fin to email is now live on Fin Academy!
-
Recently active
I would like to use the in-app “Post” functionality for a consent pop up, and therefore need the X in the top right removed.I’d ideally like the copy to read something like “By clicking I consent below, I consent to XYZ” and then I’d love a button below that says “I consent” or “I understand” or similar. Anyone got any clever, hacky ways I could achieve something like this in Intercom?Trying to save my Product team and Devs resources 😆
I am doing research on fetching data from my intercom account and save to another platform. In the way i just wanted to know if i can fetch anyone's app created app credentails i.e client_id,client_secret using account username and password. I have also gone through the api doc provided by Intercom but didn't found anything relevant to this. So anyone can tell me whether it is possible in Intercom or not?
There are some required fields which are not supported for this issue type. Do you mind helping me understand the process to linking up our JIRA instance with Intercom so we can create as well as link issues direct from Intercom?
Hi Everyone, I am Erin. I just joined the community.
Hi,My company uses Salesforce Account Teams. One of the roles is “Client Success”.I would like whomever is assigned to that role, to be considered the ‘company owner’ in intercom, so that incoming conversations / tickets will be auto-assigned to that person. Putting it another way, I wish there was a field in intercom called “Owner” and I could assign that team to that owner. I could not find such an intercom field. Perhaps this can be done with a custom field + automation workflow?
In our app, when I type a link in the intercom chat (https://example.com/list), it opens in the Safari browser. However, when the same link is triggered from a notification or from another app like WhatsApp or Messages, it works fine.Based on the article about deep linking (https://developers.intercom.com/installing-intercom/ios/deep-linking/), I added the following configuration:<key>IntercomUniversalLinkDomains</key><array> <string>example.com</string> <string>https://example.com/help</string> <string>https://www.example.com/help</string> <string>https://example.com</string> <string>https://www.example.com</string></array>Additionally, in my AppDelegate I have implemented:func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { print("breakp
Has anyone ever seen an issue with the conversations API returning the wrong type for a conversation part? I’m working with a customer and we’re seeing an issue where sometimes the API returns conversation parts with a type = “assignment” but it should be a “comment” or a “note”. I have an example I can share if that is helpful.
My company recently switched over to Intercom and we made the decision to utilize the Data Sync by Hubspot app so we could pipe user / company data back and forth between Intercom and Hubspot. However, what I failed to realize is that we aren’t able to sync conversations and tickets in Intercom into Hubspot activities. I see that this is possible with Intercom’s Hubspot app integration. I’m wondering if it’s possible to utilize both apps in tandem, however, my main hesitation is that I see the potential to have user data duplicated. Or if a user already exists in Hubspot, do the conversations auto-sync to that contact? Any guidance on this is much appreciated.
Looking for effective ways to optimize API usage, implement retries, or increase limits (Read More). Any best practices or solutions to handle this efficiently without hitting restrictions? Appreciate any insights!
Hi, nice to meet you!First of all, I want to apologize if there is any misunderstanding. My native language is Spanish, and I wrote this message myself, with a review by ChatGPT.I'm here because I have a small issue with a specific functionality, specifically the /tickets/search endpoint.The main issue is that I have two types of tickets. To give you an example, one type is for delayed shipping, and the other is for requesting a shipment cancellation. In both cases, when I create the ticket, I send an extra attribute called tracking_number. Both types of tickets are created correctly with this extra parameter and the necessary data.Now, here’s the issue: when I try to search, I do it like this: As you can see, I can't find any results. However, when I search individually, I can find both tickets. I’d like to know if this functionality is supported. I checked the documentation but couldn't find an exact example for a multiple search.Additionally, I’d also like to know if there is a way
Hello everyone,I see that there are several possibilities for Intercom onboarding on the web. Among them is a checklist. For mobile, we basically have the carousel, which makes the experience very limited.Is there any plans to add more mobile onboarding features to Intercom or could someone recommend tools to add a better onboarding experience on mobile?Thank you.
I am using the latest expo 52 with latest intercom and I get this error when on the first screen that uses Intercom Error while parsing method IntercomModule.loginUnidentifiedUser: Methods that return promises must accept a RCTPromiseResolveBlock followed by a RCTPromiseRejectBlock. I am using the expo 52 and React Native .76 We call this in our main componentIntercom.loginUserWithUserAttributes({name: user?.first_name + ' ' + user.last_name,phone: user?.phone,email: user?.email,userId: user?.uuid,}); We set the config in our app.config.js file like this ```config.plugins.push( ["@intercom/intercom-react-native",{"appId": process.env.INTERCOM_APP_ID,"androidApiKey": process.env.INTERCOM_IOS_TOKEN,"iosApiKey": process.env.INTERCOM_ANDROID_TOKEN,"intercomRegion": "US"}]) ``` Not sure what we may be missing
We are using Jira for tickets with the basic mode. In it, I created custom workflows. I made several workflows, and they were working fine, allowing tasks to be created in Jira. However, at some point, all of them stopped working and started returning a 401 Unauthorized error. Even though we completely reinstalled Jira for Tickets in Intercom yesterday. Now, none of my custom workflows are working. I found articles where people reported the same problem. Is there a solution?
Hi everyone!I’m new to Intercom and have some questions which might come across as extremely basic. I’m trying to send out a once off message to a select cohort, but Intercom continues to send this to people who match in the future. Is it possible to send this once only at that given time? I’m creating a series for new users who sign up. It has 7 touch points over 3 weeks. I want a user to exit the series when they make a purchase, and begin another series. The attribute is [is_customer: true]. Once this updates, I want them to exit the following engagements. Has anyone integrated Intercom with Slack? I want to be notified in my slack channel when someone starts a conversation. Is this possible? What is an underrated feature on Intercom? (Just out of curiosity!)Thank you in advance.
Hi guys, One of the things we do is to measure the number of tickets/conversations we started.What’s the best way to create a report that shows that on a weekly/monthly basis? Thank you!Ro
Hello,I am using Intercom API in a GCP cloud run to do several things, especially updating a user.Sometimes it works, but sometimes I get an 401 error: “token_not_found”, and I checked multiple times with logs: I am always sending the access token and it’s the right one. “intercom_user_id” is also the right one.I also checked multiple times my server and logic, and there’s no error. It’s happening both in production and test mode.Here are some request ids where this error happened: 0003sad4ua316ingi1l0, 000an1qat9nc63bsg160, 0021017ivsn8tt93ipd0.Here is the call in python:url = f"https://api.intercom.io/contacts/{intercom_user_id}"headers = { "Authorization": f"Bearer {settings.INTERCOM_ACCESS_TOKEN}", "Intercom-Version": "2.12", "Content-Type": "application/json",}update_dict = intercom_profile.model_dump()try: response = await httpx_client.put(url=url, headers=headers, json=update_dict) if response.status_code != 200: log.info(response.json()) log.i
Hi Community, I’m looking to integrate multiple third-party apps with my Intercom workspace. Is there a limit to the number of apps I can connect? Also, are there any performance issues or best practices I should be aware of when managing multiple integrations? Thanks in advance for your help!
Hi,We’re looking to upgrade React Native and use the “new architecture” https://reactnative.dev/architecture/landing-pageHowever all libraries with native dependencies need to support the new architecture before this can be enabled.Is there a plan to provide a version of intercom-react-native https://github.com/intercom/intercom-react-native to support the new architecture?Richard
Hi Intercom,We're building tools to help our team manage help center content more efficiently, but we've encountered a discrepancy that's causing some challenges.Currently, the article ID returned through the Articles API (/articles endpoint) doesn't include the activeContentId required in the Intercom app URL for editing articles. For example:API response article ID: 10515400 Required activeContentId in URL: 11181100 (e.g. https://app.intercom.com/a/apps/ej501111/knowledge-hub/all-content?activeContentId=111811--&activeContentType=article&editorMode=view)This means we can't programmatically generate direct links to the article editor in the Intercom app using the data from the API response.Request: Could you consider adding the activeContentId to the API response? This would allow us to generate accurate deep links to articles in the Intercom app editor, making it much easier for our team to quickly access and edit specific articles.Current API response:{ "id": "10515400", "ty
I am looking for a way to automatically start new Whatsapp conversations—using approved Templates (triggered by events that are synced from the product to IC).I know that this is not possible with the current Whatsapp integration and that only 1:1 conversations can be started via the Inbox.Does anyone have any ideas on how I could implement this? Has a workaround perhaps been found?If not, an external solution would also be conceivable. I would be grateful for any advice.
Hello everyone, i would like to know how can i solve this problem:I made a part of my chatbot with botpress so i created an app to integrate botpress in my intercom chatbot. Nevertheless, i’m strugguling with integrating it in my workflow, this message shows. How can i make this thing work please ?
How to integrate intercom in angular 15 app ?
We don't need a teammate (call them X) to have access to the Inbox, we just need him to belong to a team.Here are the replication steps1. Assign teammate X an Inbox seat license2. Add teammate X to the Sales team successfully3. However as soon as I remove the Inbox seat from teammate X, he disappears from the Sales team.
Hi everyone,I’m working with a Custom Action in Intercom, where I send a POST request that includes a variable from the conversation data. However, sometimes this variable is missing for certain conversations, which causes the POST request to fail.Is there a way to create a fallback or default value for such variables in the request body to prevent the failure?For example, here’s my current setup:If data is not available, how can I ensure the request still goes through, possibly by setting a default value (like null or a placeholder string)?Any advice or examples specific to handling this in a Custom Action would be greatly appreciated.
We have many conversations in the backlog with a specific tag. We want to implement a simple Python script that uses an API to find and close these conversations. After closing them, the script should send a message to those chats to inform the users about the closure. How can this be implemented?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.