Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

As of Versionproduct version 2020 Winter | component version 1.0
Request MethodGET
Response FormatJSON
Description

Get the data of all users for the tenant with the nameGet users returns a list of users filtered by query parameters.

Required user role: YUUVIS_TENANT_ADMIN

Meaning of the response status codes:
HTTP Status CodeMeaning
200 OKSuccessful, the data of all users of the specified tenant have been read.
401 UNAUTHORIZEDThe call was unauthorized.
Request Example

GET /api-tm/system/tenants/myTenant/users HTTP/1.1

Response Example

[{
  "id": "a69a0eb6-3662-4c00-8096-38fbb2c4a922",
  "email": "bartonitz@optimal-systems.de"
  "username":: "bartonitz",
, "firstName":: "Martin",
, "lastName":: "Bartonitz",
  "roles": ["role1","role2"],
  "enabled": true,
  "createdTimestamp": 1555069963564
},
{
  "id": "63d039b6-71c4-49dc-bf90-baa19acdbef9",
  "email": "bartonitz@optimal-systems.de",
  "username":: "schulz",
, "lastName":: "Schulz",
, "firstName":: "Andreas",
  "roles": ["role3","role4"],
  "enabled": true,
  "createdTimestamp": 1555069963564
},

...]

{
  • No labels