GET
/
v1
/
users
/
{id}
Retrieve User details
curl --request GET \
  --url http://127.0.0.1:4001/v1/users/{id}
{
"email": "john@example.com",
"firstName": "John",
"groups": [
"admin-group",
"midaz-viewer-group",
"midaz-contributor-group"
],
"id": "123e4567-e89b-12d3-a456-426614174000",
"lastName": "Doe",
"username": "johndoe"
}

Path Parameters

id
string
required

The unique identifier of the user you want to retrieve.

Response

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

The identity details for a user, including basic info and groups.

email
string

User’s email address.

firstName
string

User’s first name.

groups
string[]

List of groups the user belongs to.

id
string

Unique identifier of the user.

lastName
string

User’s last name.

username
string

Unique username.