GET v2/apps/{id}/ios
Fetch the iOS Details of an App from the provided App Id
Request Information
URI Parameters
Name | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | integer |
The Application Id of App to Fetch
Additional Info :
Required |
Body Parameters
None.
Response Information
Resource Description
AppIOSResponseName | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Id | integer |
App Id |
|||||||||||
Name | string |
App Name |
|||||||||||
PrimaryCategory | string |
"Books", "Business", "Catalogs", "Education", "Entertainment", "Finance", "Food & Drink", "Health & Fitness", "Lifestyle", "Medical", "Music", "Navigation", "News", "Photo & Video", "Productivity", "Reference", "Social Networking", "Sports", "Travel", "Utilities", "Weather" |
|||||||||||
SecondaryCategory | string |
Same Choices from Primary Category, but MUST be Different |
|||||||||||
Keywords | string |
Comma Seperated Values used when searching the AppStore. Must have 2 characters, do not include copyrighted or trademarked terms |
|||||||||||
Copyright | string |
Owner of the Copyright to the app. Ex: 2016 YourAppNameOrCompany |
|||||||||||
SupportEmail | string | ||||||||||||
SupportSite | URI | ||||||||||||
LargeIcon | URI |
Additional Info :
Needed for Private App Store |
|||||||||||
Icon | URI | ||||||||||||
Territories | Collection of string |
List of All Territories where your app is distributed. Default: WorldWide A List of All Possible Selections is available https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Appendices/AppStoreTerritories.html |
|||||||||||
StoreUrl | URI |
Url To AppStore Listing. Not Set Until the App's Build Status is "Live" |
|||||||||||
SplashImage | URI |
Url of Splash Image to show on startup, preferably atleast 640x960
Additional Info :
Needed for Private App Store |
|||||||||||
Phone | string |
Phone Number for Apple Review board contact information, not displayed publicly |
|||||||||||
RequiresLoginInfo | boolean |
Used if your site has restricted access content. Used by Apple Reviewers to login and test your App |
|||||||||||
SiteUserName | string |
Dummy User account you created for Apple Reviewer to test. |
|||||||||||
SitePassword | string |
Password for Dummy User for Apple Reviewer to Login with |
|||||||||||
VersionName | string |
Usually Major.Minor.Version AutoIncremented after Successful build. |
|||||||||||
VersionNumber | integer |
AutoIncremented after Successful build, but optionally user customized |
|||||||||||
BundleId | string |
Current Bundle Id (Unique Identifier used by Apple) |
Response Formats
{ "id": 2, "name": "My Cool App", "primaryCategory": "Music", "secondaryCategory": "Utilities", "keywords": "Music, Sound, Utility, Awesome, Comma, Separated, words", "copyright": "2024 My Cool APP", "supportEmail": null, "supportSite": null, "largeIcon": "http://www.mrwallpaper.com/wallpapers/Color-Pencils-1024x1024.jpg", "icon": "http://www.mywebsite.com/images/180x180logo.png", "territories": [ "Albania", "Sweden", "New Zealand" ], "storeUrl": null, "splashImage": "http://www.mywebsite.com/images/mysplash640x960.png", "phone": "3144333222", "requiresLoginInfo": true, "siteUserName": "LoginGuy2135@address.com", "sitePassword": "12345$ECUR1TY", "versionName": "1.2.1", "versionNumber": 5, "bundleId": "com.mysite.www.an123" }
<AppIOSResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models"> <BundleId>com.mysite.www.an123</BundleId> <Copyright>2024 My Cool APP</Copyright> <Icon>http://www.mywebsite.com/images/180x180logo.png</Icon> <Id>2</Id> <Keywords>Music, Sound, Utility, Awesome, Comma, Separated, words</Keywords> <LargeIcon>http://www.mrwallpaper.com/wallpapers/Color-Pencils-1024x1024.jpg</LargeIcon> <Name>My Cool App</Name> <Phone>3144333222</Phone> <PrimaryCategory>Music</PrimaryCategory> <RequiresLoginInfo>true</RequiresLoginInfo> <SecondaryCategory>Utilities</SecondaryCategory> <SitePassword>12345$ECUR1TY</SitePassword> <SiteUserName>LoginGuy2135@address.com</SiteUserName> <SplashImage>http://www.mywebsite.com/images/mysplash640x960.png</SplashImage> <StoreUrl i:nil="true" /> <SupportEmail i:nil="true" /> <SupportSite i:nil="true" /> <Territories xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>Albania</d2p1:string> <d2p1:string>Sweden</d2p1:string> <d2p1:string>New Zealand</d2p1:string> </Territories> <VersionName>1.2.1</VersionName> <VersionNumber>5</VersionNumber> </AppIOSResponse>