Getting a group

Returns the group by its ID.

GET /push/v1/management/group/{groupId}

Request format

https://push.api.appmetrica.yandex.net/push/v1/management/group/{groupId}
groupIdGroup ID.
groupIdGroup ID.

Response format

{
  "group": {
    "id": int,
    "app_id": int,
    "name": "string",
    "send_rate": int
  }
}
group
The group.
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/group/XXXXXX \
  -H 'Authorization: OAuth 05dd3dd84ff948fdae2bc4fb91f13e22bb1f289ceef0037'
Copied to clipboard