Hi,
Get JSON results from any existing (saved) chart by chart ID.
GET https://amplitude.com/api/3/chart/CHART_ID_HERE/query
There is no EventType in the obtained result, but only one eventIndex. How do I obtain the corresponding EventType?
Hey yingjie.duan.
You are correct. The current result set for the https://amplitude.com/api/3/chart/CHART_ID_HERE/query endpoint doesn’t return the eventType used for that given event segmentation chart.
However, if you query a user composition chart in this manner, the result set includes the name of user property which was used in that chart. eg. u'seriesLabels': [u'gp:<yourCustomUserPropertyName']
Also, the documentation says that “Responses will vary depending on the chart type.”
I’m curious to know your use case for using this particular endpoint. I have personally used the GET https://amplitude.com/api/2/events/segmentation endpoint to build some custom time series raw data points for some of my projects.
Hi Saish Redkar
Thank you for your answer. We want to monitor these eventtypes, and then send reminder emails if they exceed a certain limit.
Happy to help, yingjie.duan !You can set custom monitoring alerts for Amplitude charts and trigger emails based on your alert conditions. This is a paid add on for the Growth and Enterprise customers. You can read more on the Insights feature here.
Auto Capture is a very prominent feature for the Browser SDK and the Native SDK's i.e. the IOS and the Android SDKs. It allows us to capture the basic [Amplitude] events like Button clicks, Navigation to pages, Pages Viewed, etc. The project that I am currently working on already has a web version on which we use the…
How do I transfer data from one amplitude account to another? It seems all the community chats about this have completely broken links. Easy to export, no way to import, very frustrating. :(
When using @amplitude/plugin-web-vitals-browser with Create React App v4 (react-scripts@4.0.3), the build fails with: ./node_modules/@amplitude/plugin-web-vitals-browser/node_modules/web-vitals/dist/web-vitals.js<br /><br />SyntaxError:…
Hello, I'm using SpringBoot and Kotlin to integrate with the Amplitude Export API. The official Amplitude documentation (https://amplitude.com/docs/apis/analytics/export) states that "data is available to export at a minimum within 2 hours of when the servers received it." However, there's no clear information about the…
Hello, Is there a way to make a query like: “Give me all the users that have the user property X equal to 10”, by using just any of the APIs, without making a cohort first through the Amplitude’s UI? Thank you!