GET v2/apps/{id}
Get Specific App Information from providing the AppId
Request Information
URI Parameters
Name | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | integer |
Additional Info :
Required |
Body Parameters
None.
Response Information
Resource Description
AppResponseName | Type | Description | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Id | integer |
Application Id |
|||||||||||
MemberId | integer |
Member Id of the Owner |
|||||||||||
Name | string |
Name of the App |
|||||||||||
Url | URI |
What Website is the Homepage of the App |
|||||||||||
Created | date |
The Date Time when the App was created |
|||||||||||
Company | string |
What Company the App Belongs to |
|||||||||||
PrivateStore | boolean |
Set True if not using the Public AppStore/GooglePlay |
|||||||||||
MultiTenant | boolean |
Set True if Using the MultiTenant Feature |
Response Formats
{ "id": 1337, "memberId": 42, "name": "Awesome App Name", "url": "http://www.appnotch.com/", "created": "2024-12-21T18:29:46.4129604Z", "company": "AppNotch", "privateStore": false, "multiTenant": false }
<AppResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AppNotch.Converter.Api.Server.Models"> <Company>AppNotch</Company> <Created>2024-12-21T18:29:46.4129604Z</Created> <Id>1337</Id> <MemberId>42</MemberId> <MultiTenant>false</MultiTenant> <Name>Awesome App Name</Name> <PrivateStore>false</PrivateStore> <Url>http://www.appnotch.com/</Url> </AppResponse>