GET v2/apps/{id}/android

Fetch the Android Details of an App from the provided App Id

Request Information

URI Parameters

Name Type Description
id integer

The Application Id of App to Update

Additional Info :

Required

Body Parameters

None.

Response Information

Resource Description

AppAndroidResponse
Name Type Description
Id integer

App Id

Name string

Name of App

Category string

The Current Category of Android App. Used by Google Play store

PromoText string

Current Short Description of App.

SupportEmail string

Current Email

SupportSite URI

Current Support Website Address

LargeIcon URI

Current Address of Large Icon Image

Icon URI

Current Address of Icon Image. Needs to be 96x96 px

PromoImage URI

Large Image 1024 x 500. Displayed at top of Google Play Entry

VideoUrl URI

Current Video Url for Google Play Entry

Territories Collection of string

Current List of Localized regions where your app is available for download.

StoreUrl URI

Current Url to App's Google Play Entry (Maintained by AppNotch)

SplashImage URI

Current Url to Splash Image (Shown in App before homepage is loaded)

Phone string

Current Contact Phone Number

VersionName string

Current Version name

VersionNumber integer

Current Version Number

PackageName string

Current Package Name

Response Formats

{
  "id": 2,
  "name": "My Cool App",
  "category": "Music & Audio",
  "promoText": "My App is the Coolest!",
  "supportEmail": "Support@appnotch.com",
  "supportSite": "https://www.appnotch.com/support",
  "largeIcon": "http://findicons.com/files/icons/1790/large_android/512/android_sh.png",
  "icon": "http://icons.iconarchive.com/icons/arrioch/blawb/96/android-icon.png",
  "promoImage": "http://themakeinfo.com/wp-content/uploads/2015/02/Root-Info-feature-graphic-1024x500.png",
  "videoUrl": "https://www.youtube.com/watch?v=Qr2Q4kNptT8",
  "territories": [
    "United States",
    "Iran",
    "Botswana",
    "Chile"
  ],
  "storeUrl": null,
  "splashImage": "http://www.cbimports.co.uk/images/product_images/11024830.jpg",
  "phone": "3144333222",
  "versionName": "1.1.2",
  "versionNumber": 5,
  "packageName": "com.mycoolapp.pkg.name"
}
<AppAndroidResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models">
  <Category>Music &amp;amp; Audio</Category>
  <Icon>http://icons.iconarchive.com/icons/arrioch/blawb/96/android-icon.png</Icon>
  <Id>2</Id>
  <LargeIcon>http://findicons.com/files/icons/1790/large_android/512/android_sh.png</LargeIcon>
  <Name>My Cool App</Name>
  <PackageName>com.mycoolapp.pkg.name</PackageName>
  <Phone>3144333222</Phone>
  <PromoImage>http://themakeinfo.com/wp-content/uploads/2015/02/Root-Info-feature-graphic-1024x500.png</PromoImage>
  <PromoText>My App is the Coolest!</PromoText>
  <SplashImage>http://www.cbimports.co.uk/images/product_images/11024830.jpg</SplashImage>
  <StoreUrl i:nil="true" />
  <SupportEmail>Support@appnotch.com</SupportEmail>
  <SupportSite>https://www.appnotch.com/support</SupportSite>
  <Territories xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>United States</d2p1:string>
    <d2p1:string>Iran</d2p1:string>
    <d2p1:string>Botswana</d2p1:string>
    <d2p1:string>Chile</d2p1:string>
  </Territories>
  <VersionName>1.1.2</VersionName>
  <VersionNumber>5</VersionNumber>
  <VideoUrl>https://www.youtube.com/watch?v=Qr2Q4kNptT8</VideoUrl>
</AppAndroidResponse>