API 2.0
App Groups
List and view app groups a user has defined under App Management → My Groups.
Endpoints for user-defined app groups — the groups you create under App Management → My Groups.
List App Groups
Summary of every app group under the current account.
POST
https://www.pgyer.com/apiv2/appGroup/listAllRequest Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| _api_key | String | Yes | API Key — see auth |
Response
| Field | Type | Description |
|---|---|---|
| appGroupName | String | Group name |
| appGroupKey | String | Unique group key |
| appGroupShortcutURL | String | Group short URL |
| appGroupDescription | String | Group description |
| appGroupCount | String | App count in the group |
| appCreated | String | Group creation time |
{
"code": 0,
"message": "",
"data": [
{
"appGroupName": "Beta group",
"appGroupKey": "g1a2b3c4d5e6",
"appGroupShortcutURL": "pgyer.com/group/abcd",
"appGroupDescription": "Beta group for the test team",
"appGroupCount": "3",
"appCreated": "2025-01-01 10:00:00"
}
]
}View an App Group
Detail for a single app group, including each app it contains (latest version only).
POST
https://www.pgyer.com/apiv2/appGroup/viewRequest Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| _api_key | String | Yes | API Key — see auth |
| appGroupKey | String | Yes | The group key — fetch it via List App Groups |
Response
| Field | Type | Description |
|---|---|---|
| appGroupName | String | Group name |
| appGroupKey | String | Unique group key |
| appGroupShortcutURL | String | Group short URL |
| appGroupDescription | String | Group description |
| appGroupCount | String | App count in the group |
| appCreated | String | Group creation time |
| apps | Array | Apps in the group (latest version for each) |
{
"code": 0,
"message": "",
"data": {
"appGroupName": "Beta group",
"appGroupKey": "g1a2b3c4d5e6",
"appGroupShortcutURL": "pgyer.com/group/abcd",
"appGroupDescription": "Beta group for the test team",
"appGroupCount": "3",
"appCreated": "2025-01-01 10:00:00",
"apps": [
{
"buildKey": "a1b2c3d4e5f6",
"buildName": "Sample App",
"buildVersion": "1.1",
"buildType": 2
}
]
}
}