GET /tenant-management/api/idm/users/{id}

As of Version

product version 2021 Winter | component version 

Request MethodGET
Response FormatJSON
Required PermissionThe endpoint is available for every logged-in user.
Description

Retrieves the representation of the user specified by id. Only users within the tenant of the logged-in user are available.

The response body contains all user account properties available via Tenant Management API.
>> User Management via Endpoints

Request Example

https://<host>/tenant-management/api/idm/me

Response Example
{
  "createdTimestamp": 0,
  "email": "string",
  "enabled": true,
  "firstName": "string",
  "groups": [
    "string"
  ],
  "id": "string",
  "lastName": "string",
  "password": "string",
  "roles": [
    "string"
  ],
  "username": "string"
}