Pgyer Docs
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.

POSThttps://api.pgyer.com/apiv1/app/viewGroup

Request Parameters

ParameterTypeDescription
aIdStringApp Id.
_api_keyStringAPI Key.

Response Data

ParameterTypeDescription
appKeyStringApp Key.
appTypeIntegerApp type: 1 iOS, 2 Android.
appIsFirstIntegerWhether this is the first build: 1 yes, 2 no.
appIsLastestIntegerWhether this is the latest build: 1 yes, 2 no.
appFileSizeIntegerApp file size.
appNameStringApp name.
appVersionStringVersion.
appVersionNoIntegerAndroid version code; always 0 for iOS.
appBuildVersionIntegerBuild number generated by Pgyer to distinguish historical builds.
appIdentifierStringBundle ID on iOS or package name on Android.
appIconStringApp icon key. Retrieve the image from https://www.pgyer.com/image/view/app_icons/{appIcon}.
appDescriptionStringApp description.
appUpdateDescriptionStringRelease notes.
appScreenShotsStringScreenshot keys. Retrieve an image from https://www.pgyer.com/image/view/app_screenshots/{screenshotKey}.
appShortcutUrlStringApp short URL.
appQRCodeURLStringApp QR-code URL.
appCreatedStringUpload time.
appUpdatedStringLast update time.

List User App Groups

Here, a user App group means a folder managed under Tools → Folders in Dashboard V2.

POSThttps://api.pgyer.com/apiv1/userAppGroup/listAll

Request Parameters

ParameterTypeDescription
uKeyStringUser Key.
_api_keyStringAPI Key.

Response Data

ParameterTypeDescription
userAppGroupNameStringApp group name.
userAppGroupKeyStringUnique App group key.
userAppGroupShortcutURLStringApp group short URL.
userAppGroupDescriptionStringApp group description.
userAppGroupCountStringNumber of apps in the group.
userAppCreatedStringApp 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.

POSThttps://api.pgyer.com/apiv1/userAppGroup/view

Request Parameters

ParameterTypeDescription
userAppGroupKeyStringUser App Group Key, available from userAppGroup/listAll.
_api_keyStringAPI Key.

Response Data

ParameterTypeDescription
userAppGroupNameStringApp group name.
userAppGroupKeyStringUnique App group key.
userAppGroupShortcutURLStringApp group short URL.
userAppGroupDescriptionStringApp group description.
userAppGroupCountStringNumber of apps in the group.
userAppCreatedStringApp group creation time.
appsArrayApps in the group, with only the latest version of each app returned.

On this page