deliver • snapshot • frameit • PEM • sigh • produce • cert • codes
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.
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.
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.
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.
Part of fastlane
: spaceship is a nice Ruby wrapper that takes care of all the heavy lifting for you :rocket: Check out the available methods here.
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
The response HTTP status codes are confusing:
302 Moved Temporarily
: Login successful200 OK
: Login unsuccessful, wrong credentialsIf you get 200
and your credentials are correct, try deleting the cookies.
List all your apps with the most basic app metadata:
GET
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/manageyourapps/summary
If you get 401
, try deleting the cookies and sending a new login request.
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
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.
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)
Create a new version of your existing app.
POST
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/version/create/[app_id]
Available parameters
{"version": "2.0"}
Creates a new app on iTunes Connect
POST
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/create/?appType=ios
Available parameters
The response HTTP status codes are not correctly used:
200 OK
: An error occurred, check the response JSON to read the error message200 OK
: Successfully created a new appYou have to read the response["data"]["sectionErrorKeys"]
to be sure the request was successful.
Uploading a new binary is only possible using the iTMSTransporter
. You can take a look at deliver how this is implemented.
This request will show information about all uploaded builds:
GET
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/trains/
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.
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.
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.
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": "felix@krausefx.com",
"errorKeys": []
},
"firstName": {
"value": "Felix"
},
"lastName": {
"value": "Krause"
},
"testing": {
"value": true
},
"groups": []
}]
}
Submit a new version for Review:
POST
https://itunesconnect.apple.com/WebObjects/iTunesConnect.woa/ra/apps/[app_id]/details/submit/summary
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.
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
This documentation is part of the fastlane toolchain.
Checkout spaceship for a Ruby wrapper around the iTunes Connect API.
Help us keep fastlane
open and inclusive. Please read and follow our Code of Conduct.
Special thanks to this GitHub Issue in particular @spidfire and Christian Beer.