curl --request GET \
--url https://platform.versori.com/api/organisations/v1/organisations/{organisation_id}/groups/{group_id} \
--header 'Authorization: Bearer <token>'{
"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} \
--header 'Authorization: Bearer <token>'{
"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>"
}
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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.