Skip to content
This repository has been archived by the owner on Jul 25, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (28 loc) · 844 Bytes

create_request.md

File metadata and controls

34 lines (28 loc) · 844 Bytes

Create a new App

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

The below listed data is sent via a POST request. You'll have to make sure the format you're using is correct and provides all needed information.

{
    "versionString": {
        "value": "1.0"
    },
    "newApp": {
        "bundleId": {
            "value": "com.krausefx.app"
        },
        "vendorId": {
            "value": "[SKU Number]"
        },
        "appType": "iOS App",
        "name": {
            "value": "[Your App Nmae]"
        },
        "primaryLanguage": {
            "value": "English_Australian"
        }
    }
}

Example Response