• This repository has been archived on 26/Jul/2023
  • Stars
    star
    520
  • Rank 81,863 (Top 2 %)
  • Language
    Ruby
  • License
    MIT License
  • Created about 9 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The unofficial documentation of the iTunes Connect JSON API


fastlane

deliversnapshotframeitPEMsighproducecertcodes


itc-api-docs

Twitter: @KauseFx

The unofficial documentation of the iTunes Connect JSON API

Project Status

As there was a bigger change on iTunes Connect in September 2015 I don't find the time maintaining the docs. Instead I focus on keeping spaceship (GitHub) up to date. Take a look at what was necessary to update from the old iTunes Connect API to the new one in this pull request.

Introduction

This document describes the iTunes Connect JSON API and how to use it. The API is used by the AngularJS based iTunes Connect front-end to update app metadata. It is public once you have a valid session.

To test your requests, I recommend the awesome Paw HTTP Client for Mac OS.

fastlane and some of the fastlane tools make use of the iTunes Connect API. Using this git repository it's easy to keep the documentation up to date.

Cookies

All requests (except for the login action) require you to pass cookies. If you're using a HTTP client, you'll get this for free.

Testing/Using the API

Download the pre-filled PAW file and open it with Paw.

Next, you can enter your iTunes Connect credentials in the Default Domain settings.

The app_id is the ID of your app. You only need to fill that in, if you want to fetch the metadata for one of your apps.

Switch back to the list of requests on the left side and select Login. Click CMD + R to send the request to login.

Ruby Wrapper for iTunes Connect

Part of fastlane: spaceship is a nice Ruby wrapper that takes care of all the heavy lifting for you 🚀 Check out the available methods here.

API Docs

Login

For all requests listed below, you'll need a valid cookie which you have to pass for each request.

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/wo/0.0.1.13.3.13.3.2.1.1.3.1.1

The login URL changes from time to time. To get the latest one, check out login_url.rb.

require 'open-uri'
host = "https://itunesconnect.apple.com"
url = host + open(host).read.match(/action="(\/WebObjects\/iTunesConnect.woa\/wo\/.*)"/)[1]
puts url

Call ruby login_url.rb to get the latest URL printed out.

Available parameters

  • theAccountName (POST): Your Apple ID
  • theAccountPW (POST): Your password
Example response

The response HTTP status codes are confusing:

  • 302 Moved Temporarily: Login successful
  • 200 OK: Login unsuccessful, wrong credentials

If you get 200 and your credentials are correct, try deleting the cookies.

List Apps

List all your apps with the most basic app metadata:

GET

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/manageyourapps/summary
Example response

If you get 401, try deleting the cookies and sending a new login request.

Fetch App Information

Receive all metadata information available for this app, including app description, screenshots, review status and much more.

GET

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/version/[app_id]

Available parameters

  • App ID (GET): The ID of your app (e.g. 903020700)
  • v (GET): Defines if the app metadata of the version currently available in the App Store or the new version should be used.

Example:

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/version/[app_id]?v=live

This will fetch the app metadata from the version, that is currently available in the App Store. If you don't define this parameter, you receive the metadata from the version that is currently being edited. Usually you don't need this parameter.

Example response

Update App Information

You can update the app metadata using this request. It's not very easy to build the request, as there are many parameters required.

To upload screenshots it's recommended to use the iTMSTransporter, which is also used by deliver.

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/version/save/[app_id]

Available parameters

See example POST Request (quite complex)

Example response

Create a new App Version

Create a new version of your existing app.

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/version/create/[app_id]

Available parameters

  • App ID (GET): The ID of your app (e.g. 903020700) GET
  • JSON (POST): {"version": "2.0"}
Example response

Create a new App

Creates a new app on iTunes Connect

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/create/?appType=ios

Available parameters

See example POST Request

The response HTTP status codes are not correctly used:

  • 200 OK: An error occurred, check the response JSON to read the error message
  • 200 OK: Successfully created a new app

You have to read the response["data"]["sectionErrorKeys"] to be sure the request was successful.

Example response

Upload a new Binary

Uploading a new binary is only possible using the iTMSTransporter. You can take a look at deliver how this is implemented.

List uploaded Builds

This request will show information about all uploaded builds:

GET

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/trains/
Example response

Get/Set Build Test Information

Based on the list command, you can also get and set information about a certain build, like the release notes, contact email:

GET/POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/trains/[train]/builds/[build]/testInformation

The [train] value is the version number (e.g. 2.0) while the [build] value is the build number.

To set information, use the same URL and provide everything contained inside data as a JSON value in the request.

Example response

Get Binary Details

You can receive more details for a specific build and its binary

GET

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/trains/[train]/builds/[build]/details

The [train] value is the version number (e.g. 2.0) while the [build] value is the build number.

Example response

Get List of Testers of a Build

Receive a list of all testers who have access to the given build.

GET

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/trains/[train]/builds/[build]/testers

The [train] value is the version number (e.g. 2.0) while the [build] value is the build number.

Example response

Register new external beta tester

Add a new external beta tester for Apple TestFlight

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/users/pre/create

Available parameters

Provide the following JSON data in your POST request:

{
  "testers": [{
    "emailAddress": {
      "value": "[email protected]",
      "errorKeys": []
    },
    "firstName": {
      "value": "Felix"
    },
    "lastName": {
      "value": "Krause"
    },
    "testing": {
      "value": true
    },
    "groups": []
  }]
}

Submit for Review

Submit a new version for Review:

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/details/submit/summary

See example POST Request

Example response

Cancel "Waiting for Review"

Reject an app that is waiting for review.

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/versions/[version_id]/reject

The response only contains the general app information - no additional information.

Resolution Center - Rejection Reasons

Receive the app review notes with the reason why your app version got rejected.

POST

https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/resolutionCenter?v=latest

Example response

fastlane

This documentation is part of the fastlane toolchain.

Checkout spaceship for a Ruby wrapper around the iTunes Connect API.

Like what we're doing? Be the first to know about updates and new fastlane tools

Code of Conduct

Help us keep fastlane open and inclusive. Please read and follow our Code of Conduct.

Thanks

Special thanks to this GitHub Issue in particular @spidfire and Christian Beer.

More Repositories

1

fastlane

🚀 The easiest way to automate building and releasing your iOS and Android apps
Ruby
38,644
star
2

ci

Open source, self hosted, mobile optimized CI powered by fastlane
Ruby
2,078
star
3

examples

📝 A collection of example fastlane setups
Ruby
1,410
star
4

boarding

Instantly create a simple signup page for TestFlight beta testers
Ruby
873
star
5

watchbuild

Get a notification once your iTunes Connect build is finished processing
Ruby
326
star
6

docs

All the fastlane docs
HTML
313
star
7

frameit-frames

Hosting the latest frameit frames via GitHub Pages
92
star
8

github-actions

TypeScript
73
star
9

brewed-jenkins

Autostart brew-installed Jenkins as a user when the Mac boots
58
star
10

issue-bot

This bot is responsible for commenting on GitHub issues that haven't had any activity
Ruby
51
star
11

monorepo

Scripts to migrate to a monorepo
Ruby
29
star
12

fastlane.tools

The website, powering fastlane.tools
HTML
18
star
13

spaceship.airforce

Launching fastlane into the next generation
CSS
14
star
14

TaskQueue

ruby implementation of a simple dispatch queue
Ruby
13
star
15

code-of-conduct

fastlane Contributor Code of Conduct
11
star
16

docker

Docker image used by https://github.com/fastlane/fastlane and https://github.com/fastlane/docs
Dockerfile
10
star
17

packaged-fastlane

Preparing a Ruby bundle
Shell
8
star
18

danger-device_grid

Danger plugin for the fastlane device grid.
Ruby
8
star
19

fastfile-parser

Convert the Fastfile to a JSON file
Ruby
7
star
20

nightly

Deploy nightly Ruby gem builds to RubyGems.org
Ruby
5
star
21

fastlane-plugin-ruby

Useful fastlane actions for Ruby projects
Ruby
5
star
22

managed_google_play-callback

Hosting the callback HTML file used by the get_managed_play_store_publishing_rights action
HTML
5
star
23

notes

A repository for non-code artifacts relating to fastlane
4
star
24

peril-settings

Configuration of peril
TypeScript
4
star
25

codesigning.guide

The source code for the fastlane code signing guide
HTML
2
star