Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get iTunes connect Team ID and Team name?

I'm writing down an Appfile for fastlane, my problem is I already have the team_name and team_id in Apple Dev Center but I can't get the iTunes Connect ID/itc_team_id. I'm working with different team. How do I get it? Any guide would be great. Thanks

like image 453
Calvin Ferrando Avatar asked Mar 22 '17 19:03

Calvin Ferrando


People also ask

Where is the team ID Apple?

Follow these steps to locate your Apple Team ID from your Apple developer account: Sign in to your Apple Developer Account. Click on Membership on the panel to the left. You'll find the Team ID of your account under membership information.

What is a team identifier?

A TeamID is a unique identifier(UID) related to a specific team within Microsoft Teams. The reason that this so important is because most of the administrative actions you will use to automate, script, or provision will utilize this value.


1 Answers

If you are not on your Mac, you can get it through the iTunes connect website.

  • Login to App Store Connect (https://appstoreconnect.apple.com/)
  • Get output (JSON) from (https://appstoreconnect.apple.com/WebObjects/iTunesConnect.woa/ra/user/detail)
  • You can now get your iTunes Connect ids from the associatedAccounts array with the different contentProvider objects - the entry named contentProviderId reflects the iTunes Connect id, lookup for the name value to pick the correct one

Source: https://github.com/fastlane/fastlane/issues/4301#issuecomment-253461017

like image 120
Martín De la Fuente Avatar answered Oct 05 '22 21:10

Martín De la Fuente