Search code examples
iosapp-store-connecttestflight

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!


Solution

  • 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 | felix@krausefx.com       | 2         |
    +--------+--------+--------------------------+-----------+
    
    +-----------+---------+----------------------------+-----------+
    |                       External Testers                       |
    +-----------+---------+----------------------------+-----------+
    | First     | Last    | Email                      | # Devices |
    +-----------+---------+----------------------------+-----------+
    | Max       | Manfred | email@email.com            | 0         |
    | Detlef    | Müller  | detlef@krausefx.com        | 1         |
    +-----------+---------+----------------------------+-----------+