v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Users V2

Get List of Users

Use this API to retrieve a list of all users in your account.

get/api/access/v2/users

Query parameters

pageinteger

The page number for the results to be retrieved.

sizeinteger

The number of records to be retrieved per page.

sort'name,asc' | 'name,desc' | 'email,asc' | 'email,desc' | 'organizationname,asc' | 'organizationname,desc'

The sorting criteria in the format: property,(asc|desc). The default sort order is ascending. Multiple sort criteria are supported.

Response

User details retrieved successfully

emptyboolean

The flag to check if the result list is empty.

firstboolean

The flag to check if this is the first page.

lastboolean

The flag to check if this is the last page.

numberinteger

The current page number (0-based).

numberOfElementsinteger

The number of elements on the current page.

sizeinteger

The page size.

totalElementsinteger

The total number of elements across all pages.

totalPagesinteger

The total number of pages.

pageableobject

Pagination information with page number (0-based, min: 0) and page size (min: 1)

Example response

{
  "content": [
    {
      "userId": "423e4567-e89b-12d3-a456-426614174000",
      "firstName": "Ross",
      "lastName": "Taylor",
      "fullName": "Ross Taylor",
      "email": "jane.doe@example.com",
      "accessLevels": [
        {
          "organizationId": "423e4567-e89b-12d3-a456-426614174000",
          "organizationName": "My Org",
          "roleId": "423e4567-e89b-12d3-a456-426614174001",
          "roleName": "Audit Manager"
        }
      ],
      "emailConfirmed": true,
      "active": true,
      "externalId": "ext-123456",
      "expirationDateTime": "2025-01-01T12:00:00Z",
      "disabledDateTime": "2024-06-15T08:30:00Z",
      "createdDate": "2023-10-01T09:15:00Z",
      "lastModifiedDate": "2024-02-20T14:45:00Z",
      "lastLoginDate": "2024-09-10T07:05:00Z",
      "disabledBy": "Michael Douglas",
      "defaultOrganizationName": "My Org",
      "defaultOrganizationId": "423e4567-e89b-12d3-a456-426614174111"
    }
  ],
  "numberOfElements": 1,
  "size": 20,
  "totalElements": 1,
  "totalPages": 1,
  "pageable": {
    "offset": 0,
    "pageNumber": 0,
    "pageSize": 20,
    "paged": true,
    "sort": [
      {
        "ascending": true,
        "descending": false,
        "direction": "ASC",
        "ignoreCase": false,
        "nullHandling": "NATIVE",
        "property": "name"
      }
    ],
    "unpaged": false
  }
}