GET
/
v1
/
groups
/
{id}
Retrieve Group details
curl --request GET \
  --url http://127.0.0.1:4001/v1/groups/{id}
{
"createdAt": "2025-04-07T18:13:27.297Z",
"id": "midaz-viewer-group",
"name": "Midaz Viewer",
"users": [
"johndoe",
"janedoe"
]
}

Path Parameters

id
string
required

The unique identifier of the group you want to retrieve the information.

Response

Indicates that the resource was successfully created and the operation was completed as expected.

Information of the group configured in the system, along with its metadata and assigned users.

createdAt
string

Timestamp of when the group was created.

id
string

Unique identifier of the group.

name
string

Display name of the group.

users
string[]

List of users assigned to the group.