Skip to main content
GET
/
organisations
/
{organisation_id}
/
groups
/
{group_id}
Get Group
curl --request GET \
  --url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/groups/{group_id}
{
  "id": "<string>",
  "name": "<string>",
  "numMembers": 123,
  "numServiceAccounts": 123,
  "roleBindings": [
    {
      "role": {
        "id": "<string>",
        "name": "<string>",
        "permissions": [
          {
            "id": "organisation.read",
            "description": "<string>"
          }
        ],
        "scopes": [
          "organisation"
        ]
      },
      "resource": {
        "resourceType": "organisation",
        "resourceId": "<string>",
        "name": "<string>"
      }
    }
  ]
}

Path Parameters

organisation_id
string
required
group_id
string
required

Response

OK

Group is a collection of members of an Organisation. Groups can be used to manage access to resources within an Organisation for a set of members.

id
string<ulid>
name
string
numMembers
integer
numServiceAccounts
integer
roleBindings
object[]

RoleBindings are the list of roles bindings granted to this Group.

I