Admin Integrations

List global users

Returns paginated global user data for an organization. Supports filtering by status and standard Spring pagination parameters.

get/admin/integrations/data/global-users

Query parameters

status'ACTIVE' | 'INACTIVE'

Filters the response by user status.

pageinteger

Specifies the zero-based page number.

sizeinteger

Specifies the number of items per page.

sortstring

Specifies the sort field and direction.

Response

OK

pageinteger

Specifies the current page number.

sizeinteger

Specifies the page size.

totalElementsinteger

Specifies the total number of matching records.

totalPagesinteger

Specifies the total number of pages.

hasNextboolean

Indicates whether another page exists.

Example response

{
  "data": [
    {
      "userId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "userName": "admin@company.com",
      "firstName": "John",
      "lastName": "Smith",
      "status": "ACTIVE",
      "workEmail": "john.smith@company.com",
      "federatedId": "john.smith@idp.company.com",
      "ssoEnabled": true,
      "oneIdRole": "Organization Admin",
      "createdOn": "2024-01-15T10:30:00.000Z",
      "userGroups": "Billing Admins, Platform Users",
      "lastLogin": "2025-05-29T14:32:01.000Z"
    }
  ],
  "size": 20,
  "totalElements": 150,
  "totalPages": 8,
  "hasNext": true
}

Changes