groups

Get group access levels

Returns the list of access levels defined for the group. Groups that only offer default (unnamed) access return an empty list.

get/groups/{group_id}/access_levels

Path parameters

group_idstring uuid required

The ID of the group whose access levels to return.

Response

The access levels defined for the group.

Example response

{
  "results": [
    {
      "access_level_name": "Developer",
      "access_level_remote_id": "30"
    },
    {
      "access_level_name": "Maintainer",
      "access_level_remote_id": "40"
    }
  ]
}

Changes