Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to export Testflight external tester emails

Doesn't seem like iTunes connect has basic exporting of user emails from Prerelease > External testers

Needed to export emails to CSV

Does anyone have a script or workaround solution?

Thanks!

like image 663
amleszk Avatar asked Aug 09 '15 14:08

amleszk


3 Answers

You can use pilot (from Fastlane) to do that :

To export in a CSV file: fastlane pilot export

$ fastlane pilot list

+--------+--------+--------------------------+-----------+
|                    Internal Testers                    |
+--------+--------+--------------------------+-----------+
| First  | Last   | Email                    | # Devices |
+--------+--------+--------------------------+-----------+
| Felix  | Krause | [email protected]       | 2         |
+--------+--------+--------------------------+-----------+

+-----------+---------+----------------------------+-----------+
|                       External Testers                       |
+-----------+---------+----------------------------+-----------+
| First     | Last    | Email                      | # Devices |
+-----------+---------+----------------------------+-----------+
| Max       | Manfred | [email protected]            | 0         |
| Detlef    | Müller  | [email protected]        | 1         |
+-----------+---------+----------------------------+-----------+
like image 160
Rémy Virin Avatar answered Oct 18 '22 14:10

Rémy Virin


Just use console get Email, First Name, Last Name

Paste this into console https://gist.github.com/creaoy/80d1092283a5d0fa1070

like image 12
creaoy Avatar answered Oct 18 '22 13:10

creaoy


Upon trial and error (because I'm desperate), I found a way out, the low tech way.

Go to Activity > iOS History > All Builds > Testers

This is the page where you see all of your external and internal testers' emails, name, status, sessions, crashes and devices. Select all rows and paste them into excel. It will display all information in each cell nicely :) Select the first column in excel and you have all the emails only.

like image 4
Sue Anne C Avatar answered Oct 18 '22 14:10

Sue Anne C