Hi!
I need to extract user level data from API with the dimensions: user_id, app, platform, app_version/build, country, event_date, event_name, install_date, A/b test, experiment_start_date, experiment_end_date
I see that I can extract most of the fields from Export API.
Regarding A/B tests. I could extract all the information about experiments from endpoint:
https://experiment.amplitude.com/api/1/experiments
startDate, endDate is the start and end date of the experiment, am I right?
then list all users included into experiment from
https://experiment.amplitude.com/api/1/experiments/{id}/variants/{variantKey}/users
and join this data with the data from Export API on user_id.
But I am still missing one field: install_date (date of app installation). Is there any way that I can get this information from API?