List all groups
Use GET /v2/accounts/{account-uuid}/groups
to list all user groups.
Endpoint
/v2/accounts/{account-uuid}/groups
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
account-uuid | string | - | path | required |
groupName | string | - | query | optional |
groupOwner | string | - | query | optional |
pageNumber | integer | - | query | optional |
pageSize | integer | - | query | optional |
Response
Response codes
Code | Type | Description |
---|---|---|
200 | Rest | Get groups |
404 | ExceptionMessage | Could not find requested account |
Response body objects
The ResponseBody
object
The object doesn't provide any parameters.
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"
}
]