List of groups

Returns all groups for the specified application.

GET /push/v1/management/groups

Request format

https://push.api.appmetrica.yandex.net/push/v1/management/groups
 ? app_id=<string>
app_id *App ID.
app_id *App ID.

* Required

Response format (JSON)

{
  "groups" : [
    {
      "id": int,
      "app_id": int,
      "name": "string",
      "send_rate": int
    },
    ...
  ]
}
groups
Information about groups.
id
Group ID.
app_id

App ID.

name
The name of the group.
send_rate

The dispatch speed limit for push messages (number per second).

Sample request

curl -X GET \
  'https://push.api.appmetrica.yandex.net/push/v1/management/groups?app_id=XXXXXX' \
  -H 'Authorization: OAuth 05dd3dd84ff948fdae2bc4fb91f13e22bb1f289ceef0037'
Copied to clipboard