API 1.0 (Archive)
App Groups
Legacy API 1.0 endpoints for app group details and user app groups.
This page documents legacy API 1.0 endpoints. New integrations should use API 2.0 App Groups.
In these legacy endpoints, a user app group is the folder managed under Tools → Folders in Dashboard V2. See Grouping and Merging Apps for the Dashboard workflow.
View App Group Details
Pgyer combines different versions of the same app into an App group. Each App group has a unique App Id. This endpoint returns the group's details.
POST
https://api.pgyer.com/apiv1/app/viewGroupRequest Parameters
| Parameter | Type | Description |
|---|---|---|
| aId | String | App Id. |
| _api_key | String | API Key. |
Response Data
| Parameter | Type | Description |
|---|---|---|
| appKey | String | App Key. |
| appType | Integer | App type: 1 iOS, 2 Android. |
| appIsFirst | Integer | Whether this is the first build: 1 yes, 2 no. |
| appIsLastest | Integer | Whether this is the latest build: 1 yes, 2 no. |
| appFileSize | Integer | App file size. |
| appName | String | App name. |
| appVersion | String | Version. |
| appVersionNo | Integer | Android version code; always 0 for iOS. |
| appBuildVersion | Integer | Build number generated by Pgyer to distinguish historical builds. |
| appIdentifier | String | Bundle ID on iOS or package name on Android. |
| appIcon | String | App icon key. Retrieve the image from https://www.pgyer.com/image/view/app_icons/{appIcon}. |
| appDescription | String | App description. |
| appUpdateDescription | String | Release notes. |
| appScreenShots | String | Screenshot keys. Retrieve an image from https://www.pgyer.com/image/view/app_screenshots/{screenshotKey}. |
| appShortcutUrl | String | App short URL. |
| appQRCodeURL | String | App QR-code URL. |
| appCreated | String | Upload time. |
| appUpdated | String | Last update time. |
List User App Groups
Here, a user App group means a folder managed under Tools → Folders in Dashboard V2.
POST
https://api.pgyer.com/apiv1/userAppGroup/listAllRequest Parameters
| Parameter | Type | Description |
|---|---|---|
| uKey | String | User Key. |
| _api_key | String | API Key. |
Response Data
| Parameter | Type | Description |
|---|---|---|
| userAppGroupName | String | App group name. |
| userAppGroupKey | String | Unique App group key. |
| userAppGroupShortcutURL | String | App group short URL. |
| userAppGroupDescription | String | App group description. |
| userAppGroupCount | String | Number of apps in the group. |
| userAppCreated | String | App group creation time. |
View User App Group
Here, a user App group means a folder managed under Tools → Folders in Dashboard V2. This endpoint returns the group details and the latest version of each app it contains.
POST
https://api.pgyer.com/apiv1/userAppGroup/viewRequest Parameters
| Parameter | Type | Description |
|---|---|---|
| userAppGroupKey | String | User App Group Key, available from userAppGroup/listAll. |
| _api_key | String | API Key. |
Response Data
| Parameter | Type | Description |
|---|---|---|
| userAppGroupName | String | App group name. |
| userAppGroupKey | String | Unique App group key. |
| userAppGroupShortcutURL | String | App group short URL. |
| userAppGroupDescription | String | App group description. |
| userAppGroupCount | String | Number of apps in the group. |
| userAppCreated | String | App group creation time. |
| apps | Array | Apps in the group, with only the latest version of each app returned. |