GET
/
v1
/
groups
List Groups
curl --request GET \
  --url http://127.0.0.1:4001/v1/groups
[
  {
    "createdAt": "2025-04-08T08:01:30.169Z",
    "id": "midaz-viewer-group",
    "name": "Midaz Viewer",
    "users": [
      "johndoe",
      "janedoe"
    ]
  },
  {
    "createdAt": "2025-04-07T18:57:57.312Z",
    "id": "midaz-editor-group",
    "name": "Midaz Editor",
    "users": [
      "johnsmith"
    ]
  }
]

Response

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

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.