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.
RoleBindings are the list of roles bindings granted to this 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>"
}
}
]
}
GetGroup returns a Group for the given Organisation.
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>"
}
}
]
}
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.
RoleBindings are the list of roles bindings granted to this Group.
Show child attributes