Get a group by group ID
Use GET /v2/accounts/{account-uuid}/groups/{group-uuid}
to get a user group by group ID.
Endpoint
/v2/accounts/{account-uuid}/groups/{group-uuid}
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
account-uuid | string | - | path | required |
group-uuid | string | - | path | required |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Rest | Account group |
400 | ExceptionMessage | Invalid account or group uuid parameter |
404 | ExceptionMessage | Account group can not be found by account and group uuid |
Response body objects
The RestGroup
object
Element | Type | Description |
---|---|---|
uuid | string | - |
name | string | - |
owner | string | - |
description | string | - |
federatedAttributeValues | string[] | - |
createdAt | string | - |
updatedAt | string | - |
Response body JSON model
{
"uuid": "string",
"name": "string",
"owner": "string",
"description": "string",
"federatedAttributeValues": [
"string"
],
"createdAt": "string",
"updatedAt": "string"
}