Users
GET {{host}}/api/rest/v4/schema/users
Authorization: Bearer {{token}}Returns users that are part of the site. Useful to retrieve basic user metadata and IDs to modify/update User fields when working with the Data APIs.
Tip: Refer to the User Management APIs to manage actual User and User Group entities in your site.
Params
| name | type | values | 
|---|---|---|
| activeOnly | boolean | true (false = ignore) | 
Request
All Users
GET {{host}}/api/rest/v4/schema/users
Authorization: Bearer {{token}}Response
[
  {
    "email": "abc@123.com",
    "id": 1026,
    "name": "Firstname Lastname",
    "entryListId": -1
  },
  {
    "email": "def@123.com",
    "id": 1044,
    "name": "Firstname Lastname",
    "entryListId": -1
  },
  {
    "email": "ghi@123.com",
    "id": 1048,
    "name": "Firstname Lastname",
    "entryListId": -1
  }
]