GET
/
api
/
auth
/
users
/
{userId}
Read user
curl --request GET \
  --url http://localhost:55001/api/auth/users/{userId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3bb03708-312f-48a0-821a-e765837dc2c4",
    "subject": "Jane Doe",
    "email": "user1@orga1.com"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

userId
string
required

User ID

Response

200 - application/json

Retrieved user

The response is of type object.