Instance Groups
List instance groups
Returns a list of instance groups for the Evo instance along with their members and roles
Parameters
Returns
200
Successful Response
Endpoint
GET
/workspace/orgs/{org_id}/members/groupsRequest
cURL
curl -X GET 'https://{service_host}/workspace/orgs/{org_id}/members/groups' \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
Response
{
"groups": [
{
"description": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"ims_groups": [
"string"
],
"members": [
{
"email": "string",
"full_name": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"name": "string",
"roles": [
{
"description": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string"
}
]
}
]
}
Update instance group members
Update the members of a group in the Evo instance
Parameters
{
"ims_groups": [
"string"
]
}
Returns
200
Successful Response
Endpoint
PATCH
/workspace/orgs/{org_id}/members/groups/{group_id}Request
cURL
curl -X PATCH 'https://{service_host}/workspace/orgs/{org_id}/members/groups/{group_id}' \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
Response
{
"description": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"ims_groups": [
"string"
],
"invitations": [
{
"created_date": "2024-07-29T15:51:28.071Z",
"email": "string",
"expiration_date": "2024-07-29T15:51:28.071Z",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"invited_by_email": "string",
"status": "string"
}
],
"members": [
{
"email": "string",
"full_name": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"name": "string"
}