List Users and Groups (User Management)
  • 1 Minute to read
  • Dark
    Light
  • PDF

List Users and Groups (User Management)

  • Dark
    Light
  • PDF

Article Summary

These APIs are provided in JSON format. They return the names of users or user groups for an applcation (tenant).

Returns a list of User Objects for that application (tenant).

GET /api/ui/user/getRaw
Content-Type: application/json
Accept: application/json
X-ACCESS-TOKEN: <Token>
Sample Response in JSON

[
  {
  "email": "testuser1@test.com",
  "name": "",
  "status": "Unverified",
  "groups": [
  {
  "name": "Group1"
  }
 ],
  "role": "Admin",
  "invalidPasswordAttempts": 0,
  "lockedStatus": "UnLocked",
  "emailSubscription": "Subscribe",
  "userType": "External",
  "supportRole": "Administrator"
  },
  {
  "email": "testuser2@test.com",
  "name": "",
  "status": "Unverified",
  "groups": [
  {
  "name": "Group1"
  },
  {
  "name": "Group2"
  }
 ],
  "role": "Reviewer",
  "invalidPasswordAttempts": 0,
  "lockedStatus": "UnLocked",
  "emailSubscription": "Subscribe",
  "userType": "Business",
  "supportRole": "Administrator"
  }
]
Returns a List <String> of group names.

GET /api/ui/group/getRaw
Content-Type: application/json
Accept: application/json
X-ACCESS-TOKEN: <Token>
Sample Response in JSON

[
"Group1",
"Group2"
]

Was this article helpful?