GET v2/apps/{id}/details
Fetch the 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
AppDetailResponseName | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Id | integer |
App Id |
|||||||||||
Name | string |
Name of App (Displayed on Mobile Device Under Icon) |
|||||||||||
Description | string |
Description of App. Displayed in Apple/GooglePlay Store |
|||||||||||
Orientation | string |
Auto, Landscape, or Portrait |
|||||||||||
EnableZoom | boolean |
Status of native application enabling zoom in/out |
|||||||||||
EnableZoomUI | boolean |
Status of native application enabling zoom in/out ui |
|||||||||||
string |
Email Address |
||||||||||||
Phone | string |
Phone |
|||||||||||
AppEnable | boolean |
Current Enabled Status of your App. Can be set to false to Disable Unpaid apps for example |
Response Formats
{ "id": 2, "name": "My Cool App", "description": "This App will Blow your mind and make you re - invent your comprehension of everything you ever though possible.", "orientation": "Auto", "enableZoom": true, "enableZoomUI": true, "email": null, "phone": null, "appEnable": true }
<AppDetailResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models"> <AppEnable>true</AppEnable> <Description>This App will Blow your mind and make you re - invent your comprehension of everything you ever though possible.</Description> <Email i:nil="true" /> <EnableZoom>true</EnableZoom> <EnableZoomUI>true</EnableZoomUI> <Id>2</Id> <Name>My Cool App</Name> <Orientation>Auto</Orientation> <Phone i:nil="true" /> </AppDetailResponse>