cURL
curl --request GET \ --url https://api.example.com/api/groups/{id} \ --header 'Authorization: Bearer <token>'
{ "id": 123, "name": "<string>", "users": [ 123 ], "permissions": [ 123 ], "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
JWT token obtained from AWS Cognito or custom authentication service
A unique integer value identifying this group.
Successful Response
Group object with all details
Group ID
Group name
List of user IDs in this group
List of permission IDs for this group
Group creation timestamp
Group last update timestamp